- H1, Title-Tag, Meta-Description, Value Stack, Fließtext - layout.tsx, page.tsx vollständig aktualisiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
856 B
TypeScript
23 lines
856 B
TypeScript
import type { Metadata } from "next";
|
|
import { Geist, Urbanist } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const geist = Geist({ variable: "--font-geist-sans", subsets: ["latin"] });
|
|
const urbanist = Urbanist({
|
|
variable: "--font-urbanist",
|
|
subsets: ["latin"],
|
|
weight: ["600", "700", "800", "900"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Das 8-Wochen Praxis-Bootcamp: Dein Kundengewinnungs-System für Selbstständige | Market Compass",
|
|
description: "Das 8-Wochen Praxis-Bootcamp für Selbstständige — mit Katja Pestereva von Market Compass und 4 Experten aus Vertrieb, Social Media & Video.",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="de" className={`${geist.variable} ${urbanist.variable} antialiased`}>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|