import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'AgencyCore | Digital Marketing Agency', description: 'High-converting digital marketing agency offering growth-driven strategies, SEO, social media management, and paid advertising solutions.', openGraph: { "title": "AgencyCore | Digital Marketing Agency", "description": "Scale your brand with data-driven marketing results.", "siteName": "AgencyCore", "type": "website" }, }; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}