19 lines
375 B
TypeScript
19 lines
375 B
TypeScript
import React from 'react';
|
|
import Contact from "@/components/Contact/Contact";
|
|
import type {Metadata} from "next";
|
|
|
|
export async function generateMetadata(): Promise<Metadata> {
|
|
return {
|
|
title: "Kontakt | Rhein Software",
|
|
};
|
|
}
|
|
|
|
const ContactPage = () => {
|
|
return (
|
|
<div>
|
|
<Contact/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ContactPage; |