import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Fintai Consultancy | Premium Wealth & Strategic Management", description: "Bespoke wealth management, estate planning, and corporate advisory for high-net-worth families. Over $4B AUM and 500+ family offices served.", keywords: "wealth management, financial advisory, estate planning, family office, corporate consultancy, investment management, high-net-worth", metadataBase: new URL("https://fintai-consultancy.com"), alternates: { canonical: "https://fintai-consultancy.com"}, openGraph: { title: "Fintai Consultancy | Transform Your Wealth Into Strategic Legacy", description: "Premium wealth management and corporate advisory tailored for high-net-worth individuals and families.", url: "https://fintai-consultancy.com", siteName: "Fintai Consultancy", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/business-meeting-cafe_53876-15162.jpg", alt: "Wealth Management Solutions"}, ], }, twitter: { card: "summary_large_image", title: "Fintai Consultancy | Premium Wealth Management", description: "Strategic financial advisory for high-net-worth families and enterprises.", images: ["http://img.b2bpic.net/free-photo/business-meeting-cafe_53876-15162.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}