import type { Metadata } from "next"; import { Inter, Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Disruptive Fund - Israeli VC Investing in Innovation", description: "Israeli venture capital fund backing breakthrough startups. We invest in deep tech, SaaS, and fintech innovations from Israel and the region.", keywords: "venture capital, Israeli startup, VC fund, investment, innovation, startup funding", metadataBase: new URL("https://disruptivefund.com"), alternates: { canonical: "https://disruptivefund.com" }, openGraph: { title: "Disruptive Fund - Israeli VC", description: "Investing in tomorrow's breakthrough companies", siteName: "Disruptive Fund", type: "website" }, twitter: { card: "summary_large_image", title: "Disruptive Fund - Israeli VC", description: "Catalyzing Israeli tech excellence" }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}