import type { Metadata } from "next"; import { Space_Grotesk } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const spaceGrotesk = Space_Grotesk({ variable: "--font-space-grotesk", subsets: ["latin"], }); export const metadata: Metadata = { title: "PitchDrive VC | European Early-Stage Venture Capital", description: "Founder-led VC firm based in Antwerp investing €250K-€2M in European startups across SaaS, FinTech, Climate Tech, and Deep Tech. Capital, mentorship, and network access.", keywords: "venture capital, VC, early-stage investment, European startups, Antwerp, SaaS, FinTech, Climate Tech, Deep Tech, founder", metadataBase: new URL("https://pitchdrive.vc"), alternates: { canonical: "https://pitchdrive.vc" }, openGraph: { title: "PitchDrive VC | Empowering European Founders", description: "Founder-led venture capital firm investing in the next generation of European market leaders.", siteName: "PitchDrive VC", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/lifestyle-people-office_23-2149173732.jpg", alt: "PitchDrive VC - Founder-Led Venture Capital" } ] }, twitter: { card: "summary_large_image", title: "PitchDrive VC | European Venture Capital", description: "Founder-led VC firm investing in European early-stage companies with capital, mentorship, and network.", images: ["https://img.b2bpic.net/free-photo/lifestyle-people-office_23-2149173732.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}