import type { Metadata } from "next"; import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Show Your Idea | Investment Agency for Visionary Startups", description: "Strategic investment agency funding and mentoring exceptional startups. Access capital, expertise, and networks to transform your entrepreneurial vision.", keywords: "investment agency, startup funding, venture capital, entrepreneur mentorship, seed funding", metadataBase: new URL("https://showyouridea.com"), alternates: { canonical: "https://showyouridea.com" }, openGraph: { title: "Show Your Idea | Investment Agency for Visionary Startups", description: "Strategic investment agency funding and mentoring exceptional startups. Access capital, expertise, and networks.", siteName: "Show Your Idea", type: "website" }, twitter: { card: "summary_large_image", title: "Show Your Idea | Investment Agency for Visionary Startups", description: "Transform your entrepreneurial vision into reality with strategic investment and mentorship" }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}