import type { Metadata } from "next"; import { Inter } 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"], }); export const metadata: Metadata = { title: "Joule VC - Israeli & American Startup Investment", description: "Atlanta-based venture capital firm investing in Israeli and American founders. We provide capital, mentorship, and network to fuel innovation.", keywords: "venture capital, startup investment, Israeli founders, Atlanta VC, tech investment, Series A, B funding", metadataBase: new URL("https://joule-vc.com"), alternates: { canonical: "https://joule-vc.com" }, openGraph: { title: "Joule VC - Capital Meets Opportunity", description: "Connecting Israeli and American founders with growth capital and strategic guidance.", url: "https://joule-vc.com", siteName: "Joule VC", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392017578-07kpyxss.jpg", alt: "Joule VC - Founders collaborating" }] }, twitter: { card: "summary_large_image", title: "Joule VC - Capital Meets Opportunity", description: "Connecting Israeli and American founders with growth capital and strategic guidance.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392017578-07kpyxss.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}