Some checks failed
Build & Deploy MB Grid Solutions / build-and-deploy (push) Failing after 7s
12 lines
344 B
TypeScript
12 lines
344 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 />;
|
|
}
|