import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import { Merriweather } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const merriweather = Merriweather({ variable: "--font-merriweather", subsets: ["latin"], weight: ["300", "400", "700", "900"], }); export const metadata: Metadata = { title: "QWER - Premier Investment Management & Wealth Advisory", description: "Expert investment management, wealth advisory, and financial planning services. Manage $8.3B+ in assets with QWER's trusted team of 50+ professionals.", keywords: "investment management, wealth advisory, portfolio management, financial planning, investment services", metadataBase: new URL("https://qwer.invest"), alternates: { canonical: "https://qwer.invest" }, openGraph: { title: "QWER - Investment Management Excellence", description: "Premier investment management and wealth advisory for discerning investors.", siteName: "QWER", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/invest-investment-financial-income-profit-costs-concept_53876-128112.jpg", alt: "QWER Investment Management" }] }, twitter: { card: "summary_large_image", title: "QWER - Investment Management Excellence", description: "Premier investment management and wealth advisory services.", images: ["https://img.b2bpic.net/free-photo/invest-investment-financial-income-profit-costs-concept_53876-128112.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}