From 75d339db8e19efbca65227fdddae46a7b8147c4d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 23:34:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++------------------------------------- 1 file changed, 6 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d3d028..934f52f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Archivo } 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"; -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - -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: "Luxe Nails - Premium Nail Care & Design Services", description: "Experience luxury nail care at Luxe Nails. Expert technicians, premium treatments, and stunning designs. Book your appointment today.", keywords: "nail salon, manicure, pedicure, gel nails, acrylic nails, nail art, beauty", openGraph: { - title: "Luxe Nails - Premium Nail Salon", description: "Elevate your nail beauty with our expert technicians and premium services.", type: "website", url: "https://luxenails.com", siteName: "Luxe Nails", images: [ - { - url: "http://img.b2bpic.net/free-photo/manicure-process_1385-276.jpg", alt: "Luxe Nails - Premium nail care"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxe Nails - Premium Nail Salon", description: "Experience luxury nail care with expert technicians.", images: ["http://img.b2bpic.net/free-photo/manicure-process_1385-276.jpg"], - }, -}; + title: "Luxe Nails - Premium Nail Salon", description: "Experience luxurious nail care with expert technicians at Luxe Nails. Premium treatments, stunning designs, and impeccable service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}