From 481a5b077b1925cb16eb782370923750f25e157d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 08:10:24 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 77cc3c8..0dde92d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", 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: "Kamiyah's Hair, Lash & Nail Studio | Premium Beauty Services", description: "Discover luxe nails, lashes, and hair services at Kamiyah's Studio. Expert stylists, premium products, and stunning transformations. Book your appointment today.", keywords: "nail salon, lash extensions, hair salon, nail art, beauty services, manicure, pedicure, lash services, hair styling", metadataBase: new URL("https://kamiyahshair.co"), - alternates: { - canonical: "https://kamiyahshair.co" - }, - openGraph: { - title: "Kamiyah's Hair, Lash & Nail Studio", description: "Premium beauty services - nails, lashes, and hair. Expert stylists ready to elevate your beauty.", url: "https://kamiyahshair.co", siteName: "Kamiyah's Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/focused-talented-manicurist-is-working-her-own-workplace-busy-beauty-salon-she-is-wearing-protective-mask_613910-21457.jpg", alt: "Kamiyah's Beauty Studio Services" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Kamiyah's Hair, Lash & Nail Studio", description: "Premium beauty services - nails, lashes, and hair transformations", images: ["http://img.b2bpic.net/free-photo/focused-talented-manicurist-is-working-her-own-workplace-busy-beauty-salon-she-is-wearing-protective-mask_613910-21457.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Kamiyah's Studio | Premium Beauty Services", description: "Luxe nails, lashes, and hair services crafted with precision and passion. Elevate your beauty at our premier studio."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}