19 lines
555 B
TypeScript
19 lines
555 B
TypeScript
import type { Metadata } from "next";
|
|
import SiteFrame from "@/components/SiteFrame";
|
|
import "./globals.css";
|
|
import { createMetadata } from "./seo";
|
|
|
|
export const metadata: Metadata = createMetadata(
|
|
"Funktechnik Schubert",
|
|
"Service, Reparatur, Diagnose und Abgleich von Funktechnik, CB-Funk, Amateurfunk und Kommunikationstechnik.",
|
|
);
|
|
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="de">
|
|
<body>
|
|
<SiteFrame>{children}</SiteFrame>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|