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: "Kapital - Premium Investment Management & Wealth Advisory", description: "Expert investment management for high-net-worth individuals. Grow your wealth with our data-driven strategies and personalized portfolio management services.", keywords: "investment management, wealth advisory, portfolio management, financial planning, high net worth investors", metadataBase: new URL("https://kapitalinvest.com"), alternates: { canonical: "https://kapitalinvest.com" }, openGraph: { title: "Kapital - Premium Investment Management", description: "Transform your wealth with strategic investment solutions from industry experts", url: "https://kapitalinvest.com", siteName: "Kapital", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/businessman-analyzing-financial-data-computer_9975-22514.jpg", alt: "Kapital Investment Management" } ] }, twitter: { card: "summary_large_image", title: "Kapital - Premium Investment Management", description: "Grow your wealth with expert-led investment strategies", images: ["https://img.b2bpic.net/free-photo/businessman-analyzing-financial-data-computer_9975-22514.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}