import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Obrazz AI - AI Fashion Technology Platform", description: "Transform fashion retail with AI-powered virtual try-on, product-to-model generation, and intelligent styling. Trusted by 500+ brands.", keywords: "fashion AI, virtual try-on, product-to-model, AI styling, fashion tech, e-commerce", metadataBase: new URL("https://obrazz.ai"), alternates: { canonical: "https://obrazz.ai"}, openGraph: { title: "Obrazz AI - AI Fashion Technology Platform", description: "Transform fashion retail with cutting-edge AI solutions for brands and creators", url: "https://obrazz.ai", siteName: "Obrazz AI", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkE5neQEFpSVmYhlWuWH5jGeh8/a-sleek-minimalist-abstract-composition--1773128520813-10dc173b.png", alt: "Obrazz AI Platform"}, ], }, twitter: { card: "summary_large_image", title: "Obrazz AI - AI Fashion Technology Platform", description: "Transform fashion retail with AI-powered virtual try-on and styling", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkE5neQEFpSVmYhlWuWH5jGeh8/a-sleek-minimalist-abstract-composition--1773128520813-10dc173b.png"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}