diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 92616dc..eb722e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/shared/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Cuts & Curls Unisex Salon - Hair, Beauty & Grooming in Bettahalsoor", description: "Professional unisex salon in Bettahalsoor, Bangalore. 4.4★ rated. Haircuts, bridal makeup, beauty treatments, grooming services. Call +91 97317 27824 or book online.", keywords: "unisex salon Bettahalsoor, hair salon Bangalore, beauty salon Ganga Nagar, bridal makeup Bettahalsoor, haircut near me, grooming services", openGraph: { - title: "Cuts & Curls - Premium Unisex Salon Bettahalsoor", description: "Professional salon services. Haircuts, bridal makeup, beauty treatments. 4.4★ rated by 56+ customers.", type: "website", siteName: "Cuts & Curls Unisex Salon", images: [ - { - url: "http://img.b2bpic.net/free-photo/blurred-vanity-with-plenty-mirrors_1203-80.jpg", alt: "Cuts & Curls Salon"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Cuts & Curls - Premium Unisex Salon", description: "Professional salon in Bettahalsoor. Haircuts, makeup, grooming. Book now!", images: ["http://img.b2bpic.net/free-photo/blurred-vanity-with-plenty-mirrors_1203-80.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "Cuts & Curls - Premium Unisex Salon in Bangalore", description: "Professional haircuts, beauty treatments, and bridal services at Cuts & Curls Unisex Salon. Rated 4.4⭐ by 56 customers in Ganga Nagar, Bettahalsoor.", keywords: "salon, haircut, beauty, bridal makeup, unisex salon, Bangalore", openGraph: { + title: "Cuts & Curls - Premium Unisex Salon", description: "Professional salon services including haircuts, beauty treatments, and bridal makeup.", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +