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 { Mulish } from "next/font/google"; export const metadata: Metadata = { title: 'Radiance Luxury Skincare', description: 'Discover pure, botanical skincare that restores your natural radiance.', openGraph: { "title": "Radiance Luxury Skincare", "siteName": "Radiance" }, }; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}