import type { Metadata } from "next"; import { Nunito } from "next/font/google"; import "./globals.css"; const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); export const metadata: Metadata = { title: "PitchDrive - European VC Fund for Early-Stage Startups", description: "Venture capital fund led by founders for founders in Antwerp. We invest in European early-stage startups with bold vision and strong growth potential.", keywords: "venture capital, VC fund, antwerp, startup funding, early-stage investment, european tech", metadataBase: new URL("https://pitchdrive.eu"), alternates: { canonical: "https://pitchdrive.eu" }, openGraph: { title: "PitchDrive - Venture Capital for Bold Founders", description: "Join PitchDrive and accelerate your startup's growth with founder-led VC expertise and strategic network.", url: "https://pitchdrive.eu", siteName: "PitchDrive", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/young-ginger-man-using-tablet-cafe_273609-16285.jpg", alt: "PitchDrive - Venture Capital Fund" }] }, twitter: { card: "summary_large_image", title: "PitchDrive - Venture Capital for Founders", description: "European VC fund investing in early-stage startups. Founded by entrepreneurs, led by founders.", images: ["https://img.b2bpic.net/free-photo/young-ginger-man-using-tablet-cafe_273609-16285.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}