From e09431e56cdf79e8887743c55a8e3268a9e7cc22 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:34:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 11 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 869ae35..2c80dc4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxury Crystal Bathroom Accessories | Golden & Silver", description: "Discover premium handcrafted crystal bathroom accessories in luxurious golden and silver finishes. Elevate your bathroom with timeless elegance.", keywords: "luxury crystal bathroom accessories, golden bathroom fixtures, silver crystal decor, premium bathroom accessories, handcrafted crystal", openGraph: { - title: "Luxe Crystal - Luxury Bathroom Accessories", description: "Elevate your bathroom with our exquisite collection of handcrafted crystal accessories in golden and silver finishes.", type: "website", siteName: "Luxe Crystal", images: [ - { - url: "http://img.b2bpic.net/free-photo/empty-white-bathtub-decoration-interior_74190-8398.jpg", alt: "Luxury crystal golden bathroom accessories collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxe Crystal - Premium Bathroom Accessories", description: "Handcrafted luxury crystal bathroom accessories in golden and silver finishes.", images: ["http://img.b2bpic.net/free-photo/empty-white-bathtub-decoration-interior_74190-8398.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxe Crystal - Premium Handcrafted Bathroom Accessories", description: "Discover exquisite handcrafted crystal bathroom accessories in golden and silver finishes. Elevate your bathroom with timeless elegance and modern functionality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -