funktechnik-schubert-website/app/layout.tsx
2026-07-03 22:25:04 +02:00

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>
);
}