19 lines
388 B
TypeScript
19 lines
388 B
TypeScript
import React from 'react';
|
|
import ImprintComp from "@/app/legal/imprint/ImprintComp";
|
|
import type {Metadata} from "next";
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
return {
|
|
title: "Impressum | Rhein Software",
|
|
};
|
|
}
|
|
|
|
const ImprintPage = () => {
|
|
return (
|
|
<div>
|
|
<ImprintComp/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ImprintPage; |