22 lines
605 B
TypeScript
22 lines
605 B
TypeScript
import type { Metadata } from "next";
|
|
import Header from "@/components/Header";
|
|
import Footer from "@/components/Footer";
|
|
import "./globals.css";
|
|
import { createMetadata } from "./seo";
|
|
|
|
export const metadata: Metadata = createMetadata(
|
|
"Funktechnik Schubert",
|
|
"Service, Reparatur und technische Unterstützung für Funkgeräte und Kommunikationstechnik.",
|
|
);
|
|
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="de">
|
|
<body>
|
|
<Header />
|
|
<main>{children}</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|