import type { Metadata } from "next"; import { Prata, Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const prata = Prata({ variable: "--font-prata", subsets: ["latin"], weight: ["400"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Joule VC | Venture Capital in Tel Aviv", description: "Israeli venture capital firm investing in infrastructure, fintech, and enterprise software from seed to Series B. Based in Tel Aviv.", keywords: "venture capital, israel, Tel Aviv, startup funding, fintech, infrastructure", metadataBase: new URL("https://joulevc.com"), alternates: { canonical: "https://joulevc.com" }, robots: { index: true, follow: true }, openGraph: { title: "Joule VC | Venture Capital in Tel Aviv", description: "Israeli venture capital firm investing in infrastructure, fintech, and enterprise software from seed to Series B.", type: "website", siteName: "Joule VC", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767037322151-j7oipn1a.jpg", alt: "Joule VC Office" }] }, twitter: { card: "summary_large_image", title: "Joule VC | Venture Capital in Tel Aviv", description: "Israeli venture capital firm investing in infrastructure, fintech, and enterprise software.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767037322151-j7oipn1a.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}