From e28f13fb63cf346fb727a4b8d04c4ac3b34beca7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:44:26 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0b2ff1f..19b50c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Saint Luciel | Luxury Jewelry & Streetwear", description: "Discover Saint Luciel's curated collection of luxury jewelry and elevated streetwear. Ethically sourced, handcrafted pieces that celebrate elegance and individuality.", keywords: "luxury jewelry, designer streetwear, artisan jewelry, ethical fashion, luxury accessories", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Saint Luciel | Luxury Jewelry & Streetwear", description: "Discover Saint Luciel's curated collection of luxury jewelry and elevated streetwear. Ethically sourced, handcrafted pieces that celebrate elegance and individuality.", url: "https://saintluciel.com", siteName: "Saint Luciel", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-portrait-elegant-woman-blonde-woman-with-curly-beautiful-hair-beautiful-blonde-long-curly-hair-woman-with-beauty-makeup-healthy-skin-accessories_343629-56.jpg", alt: "Saint Luciel luxury jewelry and streetwear"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Saint Luciel | Luxury Jewelry & Streetwear", description: "Discover Saint Luciel's curated collection of luxury jewelry and elevated streetwear.", images: ["http://img.b2bpic.net/free-photo/close-up-portrait-elegant-woman-blonde-woman-with-curly-beautiful-hair-beautiful-blonde-long-curly-hair-woman-with-beauty-makeup-healthy-skin-accessories_343629-56.jpg"], - }, -}; + title: "Saint Luciel - Luxury Jewelry & Elevated Streetwear", description: "Discover luxury jewelry and elevated streetwear celebrating the bright side of fashion. Radiant pieces that elevate your everyday."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}