13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
import { Metadata } from "next";
|
|
import ContactContent from "@/components/ContactContent";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Kontakt",
|
|
description:
|
|
"Haben Sie Fragen zu einem Projekt oder benötigen Sie technische Beratung? Wir freuen uns auf Ihre Nachricht.",
|
|
};
|
|
|
|
export default function Page() {
|
|
return <ContactContent />;
|
|
}
|