import type { Metadata } from "next"; import { Epilogue } from "next/font/google"; import "./globals.css"; const epilogue = Epilogue({ variable: "--font-epilogue", subsets: ["latin"], }); export const metadata: Metadata = { title: "PitchDrive VC | Venture Capital Firm in Antwerp, Belgium", description: "PitchDrive is a venture capital firm founded by successful entrepreneurs investing in the next generation of innovative founders across Europe.", keywords: ["venture capital", "VC fund", "Antwerp", "Belgium", "startup funding", "seed funding", "series A"], metadataBase: new URL("https://pitchdrive.vc"), alternates: { canonical: "https://pitchdrive.vc" }, openGraph: { title: "PitchDrive VC | Founders Investing in Founders", description: "A venture capital firm based in Antwerp, Belgium, founded by successful entrepreneurs.", url: "https://pitchdrive.vc", siteName: "PitchDrive", type: "website", images: [ { url: "https://pitchdrive.vc/og-image.jpg", alt: "PitchDrive VC - Founders Investing in Founders" } ] }, twitter: { card: "summary_large_image", title: "PitchDrive VC | Venture Capital in Antwerp", description: "Founded by entrepreneurs. Backing the next generation of founders.", images: ["https://pitchdrive.vc/twitter-image.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}