Full 13-section Next.js 16 landing page for "Das 8-Wochen Kundengewinnungs-System für Selbstständige". Built with pnpm, Tailwind CSS v4, TypeScript. Dark theme with MC brand gradient (blue #3B82F6 → purple #8B5CF6). All content from v5 text. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
976 B
TypeScript
36 lines
976 B
TypeScript
import type { Metadata } from "next";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const geistSans = Geist({
|
|
variable: "--font-geist-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: "--font-geist-mono",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Das 8-Wochen Kundengewinnungs-System für Selbstständige | Market Compass",
|
|
description:
|
|
"In 8 Wochen zu deinem eigenen Kundengewinnungs-System — speziell für Selbstständige. Mit Katja Pestereva von Market Compass und 4 Experten aus Vertrieb, Social Media & Video.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html
|
|
lang="de"
|
|
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
|
>
|
|
<body className="min-h-full flex flex-col bg-slate-900 text-slate-100">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|