19 lines
418 B
TypeScript
19 lines
418 B
TypeScript
import React from 'react';
|
|
import TermsOfUseComp from "@/app/legal/terms-of-use/TermsOfUseComp";
|
|
import type {Metadata} from "next";
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
return {
|
|
title: "Nutzungsbedingungen | Rhein Software",
|
|
};
|
|
}
|
|
|
|
const TermsOfUsePage = () => {
|
|
return (
|
|
<div>
|
|
<TermsOfUseComp/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TermsOfUsePage; |