From ac8c6f5867cd8d972de8f79e1d2a4b2b4a5cf4fa Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:03:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e1c15bd..92bd5c0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Tanishq Trends - Premium Fashion & Jewelry for Models", description: "Discover exclusive designer dresses and luxury jewelry collections curated for professional models. Explore premium fashion pieces from Tanishq Trends.", keywords: "fashion, jewelry, designer dresses, models, luxury, fashion design, trending styles", metadataBase: new URL("https://tanishqtrends.com"), - alternates: { - canonical: "https://tanishqtrends.com" - }, - openGraph: { - title: "Tanishq Trends - Luxury Fashion Designer App", description: "Exquisite dresses and jewelry collections for fashion-forward models and style enthusiasts.", url: "https://tanishqtrends.com", siteName: "Tanishq Trends", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-sexy-blond-woman-model-evening-dress-posing-blue-sky-background_158538-9215.jpg", alt: "Tanishq Trends Premium Dress Collection" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Tanishq Trends - Luxury Fashion Collections", description: "Premium dresses and jewelry for models. Discover exclusive collections.", images: ["http://img.b2bpic.net/free-photo/young-sexy-blond-woman-model-evening-dress-posing-blue-sky-background_158538-9215.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Tanishq Trends - Premium Fashion & Jewelry", description: "Discover curated collections of premium dresses and exquisite jewelry pieces designed for the modern model."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}