import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Radiant Skin | Pure Botanical Skincare", description: "Discover clean, effective skincare formulated with natural botanical ingredients. Experience visible results with Radiant Skin's dermatologist-tested collection.", keywords: "skincare, natural skincare, botanical skincare, clean beauty, dermatologist-tested, organic skincare", robots: { index: true, follow: true, }, openGraph: { title: "Radiant Skin | Pure Botanical Skincare", description: "Transform your skin with nature's most powerful ingredients. Discover Radiant Skin's bestselling collection today.", type: "website", siteName: "Radiant Skin", images: [ { url: "http://img.b2bpic.net/free-photo/natural-handmade-soap-plants-gray-background_93675-135163.jpg", alt: "Radiant Skin premium skincare collection"}, ], }, twitter: { card: "summary_large_image", title: "Radiant Skin | Pure Botanical Skincare", description: "Experience luminous skin with our clean, effective skincare products.", images: ["http://img.b2bpic.net/free-photo/natural-handmade-soap-plants-gray-background_93675-135163.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}