import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Lato } 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 lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { title: "TrendifyTrends17 - Wear the Trend Before It Trends", description: "Shop trendy Gen Z fashion at affordable prices. Streetwear, clothing & accessories for men, women & more. Fast shipping across India. Limited-time deals available!", keywords: "Gen Z fashion, streetwear, affordable clothing, trending fashion, Indian fashion brand, online shopping, casual wear, accessories", metadataBase: new URL("https://trendifytrends17.com"), alternates: { canonical: "https://trendifytrends17.com", }, openGraph: { title: "TrendifyTrends17 - Wear the Trend Before It Trends", description: "Discover trending fashion pieces for Gen Z at unbeatable prices. Shop our latest collection of streetwear, clothing & accessories.", url: "https://trendifytrends17.com", siteName: "TrendifyTrends17", type: "website", images: [ { url: "https://trendifytrends17.com/og-image.jpg", alt: "TrendifyTrends17 trending fashion", }, ], }, twitter: { card: "summary_large_image", title: "TrendifyTrends17 - Trendy Fashion for Gen Z", description: "Shop the hottest fashion trends at affordable prices. Streetwear, clothing & accessories for everyone.", images: ["https://trendifytrends17.com/twitter-image.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}