From 7a216c17dfa2dbb669c83cbd4f1419445c50d77d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:59:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e5d800a..a06b819 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +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: "Bilicsan Beauty - Premium Spa, Hair & Leg Cleaning Services", description: "Experience luxury spa treatments, professional hair cleaning, and specialized leg care at Bilicsan Beauty. Book your wellness appointment today.", keywords: "spa, hair cleaning, leg cleaning, beauty services, wellness, relaxation, professional salon", metadataBase: new URL("https://bilicsan-beauty.com"), - alternates: { - canonical: "https://bilicsan-beauty.com"}, - openGraph: { - title: "Bilicsan Beauty - Spa & Beauty Services", description: "Premium spa, hair, and leg cleaning services for ultimate relaxation and beauty.", type: "website", siteName: "Bilicsan Beauty", url: "https://bilicsan-beauty.com", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg", alt: "Bilicsan Beauty Spa Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Bilicsan Beauty - Spa & Beauty Services", description: "Experience luxury spa treatments and professional beauty services.", images: ["http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Bilicsan Beauty - Premium Spa & Wellness Services", description: "Experience ultimate relaxation and self-care with professional spa, hair, and leg cleaning services tailored to your wellness journey."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}