|
|
|
|
@@ -1,59 +1,25 @@
|
|
|
|
|
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";
|
|
|
|
|
|
|
|
|
|
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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<body className={`${inter.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1421,7 +1387,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|