4 Commits

Author SHA1 Message Date
18eee04145 Update src/app/layout.tsx 2026-03-10 07:30:19 +00:00
02e8c5939b Update src/app/page.tsx 2026-03-10 07:29:23 +00:00
c9e62be077 Update src/app/layout.tsx 2026-03-10 07:29:22 +00:00
1982dbc0ea Merge version_4 into main
Merge version_4 into main
2026-03-10 07:27:55 +00:00
2 changed files with 10 additions and 45 deletions

View File

@@ -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>
);
}

View File

@@ -8,7 +8,7 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Award, CheckCircle, MessageCircle, Sparkles, Star } from "lucide-react";
import { Award, CheckCircle, MessageCircle, Sparkles, Star, MapPin, Phone, Clock } from "lucide-react";
export default function LandingPage() {
return (