import type { Metadata } from "next"; import { Source_Code_Pro } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceCodePro = Source_Code_Pro({ variable: "--font-source-code-pro", subsets: ["latin"], }); export const metadata: Metadata = { title: "MyToYou Investment Agency | Grow Your Wealth with Expert Management", description: "Achieve your financial goals with MyToYou's expert investment strategies. 12-15% average returns, $2.5B+ AUM, personalized portfolio management.", keywords: "investment management, wealth management, portfolio diversification, financial advisor, investment agency", metadataBase: new URL("https://mytoYou.com"), alternates: { canonical: "https://mytoYou.com" }, openGraph: { title: "MyToYou Investment Agency | Grow Your Wealth", description: "Expert investment management with proven track record. Start investing today with personalized strategies.", type: "website", siteName: "MyToYou Investment Agency" }, twitter: { card: "summary_large_image", title: "MyToYou Investment Agency", description: "Grow your wealth with intelligent investment strategies. Expert portfolio management for your financial future." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}