Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8968320e1e | |||
| 98e9a7824f | |||
| e0181912ff | |||
| 6d3aee9526 | |||
| 2a193b7eec | |||
| b17dc95f52 | |||
| b813b0de3f | |||
| f99127bd52 | |||
| d1ac03a599 |
@@ -1,52 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } 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 "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "BnB Hair Salon & Barber Shop | Premium Grooming in Radhanpur", description: "Professional barbering, hair coloring, and beard care in Radhanpur. Expert barbers at Maruti Plaza. Book your appointment now. Call 98255 37655.", keywords: "barber shop Radhanpur, hair coloring Radhanpur, beard maintenance Gujarat, professional barbering, hair salon, grooming services", metadataBase: new URL("https://bnbhairsalon.local"),
|
||||
alternates: {
|
||||
canonical: "https://bnbhairsalon.local"},
|
||||
openGraph: {
|
||||
title: "BnB Hair Salon & Barber Shop | Premium Grooming", description: "Professional barbering and hair care in Radhanpur. Expert services for modern grooming.", url: "https://bnbhairsalon.local", siteName: "BnB Hair Salon & Barber Shop", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "BnB Hair Salon & Barber Shop", description: "Your premier grooming destination in Radhanpur"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: "BnB Hair Salon - Premium Grooming in Radhanpur", description: "Expert barbering, professional hair coloring, and specialized beard care at BnB Hair Salon in Radhanpur. Book your appointment today."
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1414,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -71,15 +71,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Barber Shop Excellence", description: "Precision buzz cuts, fades, and modern styling techniques. Expert barbers trained in the latest trends and classic cuts.", imageSrc: "http://img.b2bpic.net/free-photo/working-tools-barber-master_651396-126.jpg?_wi=1", imageAlt: "Professional barber shop interior"
|
||||
title: "Barber Shop Excellence", description: "Precision buzz cuts, fades, and modern styling techniques. Expert barbers trained in the latest trends and classic cuts. Walk out looking sharp and confident.", imageSrc: "http://img.b2bpic.net/free-photo/working-tools-barber-master_651396-126.jpg?_wi=1", imageAlt: "Professional barber shop interior"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Beard Lab Mastery", description: "Complete beard care including trimming, conditioning, maintenance, and professional dyeing. Keep your beard looking sharp.", imageSrc: "http://img.b2bpic.net/free-photo/barber-shaves-bearded-man-vintage-atmosphere_1153-7908.jpg", imageAlt: "Professional beard trimming service"
|
||||
title: "Beard Lab Mastery", description: "Complete beard care including trimming, conditioning, maintenance, and professional dyeing. Keep your beard looking sharp. Achieve the perfect groomed beard that turns heads.", imageSrc: "http://img.b2bpic.net/free-photo/barber-shaves-bearded-man-vintage-atmosphere_1153-7908.jpg", imageAlt: "Professional beard trimming service"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Hair Artistry", description: "Professional hair coloring and capillary treatments. Vibrant colors and expert care for healthy, beautiful hair.", imageSrc: "http://img.b2bpic.net/free-photo/woman-looks-from-sleepmask-dressed-domestic-wear-has-happy-smile-face-enjoys-good-morning-feels-refreshed-after-nap-poses-pink_273609-54576.jpg", imageAlt: "Vibrant professional hair coloring result"
|
||||
title: "Hair Artistry", description: "Professional hair coloring and capillary treatments. Vibrant colors and expert care for healthy, beautiful hair. Leave with a fresh new look that reflects your personal style.", imageSrc: "http://img.b2bpic.net/free-photo/woman-looks-from-sleepmask-dressed-domestic-wear-has-happy-smile-face-enjoys-good-morning-feels-refreshed-after-nap-poses-pink_273609-54576.jpg", imageAlt: "Vibrant professional hair coloring result"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -129,7 +129,7 @@ export default function LandingPage() {
|
||||
imageAlt="Professional barber ready to serve"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your Name"
|
||||
inputPlaceholder="Your Name & Phone"
|
||||
buttonText="Schedule Now"
|
||||
termsText="By booking, you agree to our terms. We'll contact you to confirm your appointment."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user