Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a193b7eec | |||
| b17dc95f52 | |||
| b813b0de3f | |||
| f99127bd52 | |||
| d1ac03a599 |
@@ -1,52 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ export default function LandingPage() {
|
|||||||
imageAlt="Professional barber ready to serve"
|
imageAlt="Professional barber ready to serve"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Your Name"
|
inputPlaceholder="Your Name & Phone"
|
||||||
buttonText="Schedule Now"
|
buttonText="Schedule Now"
|
||||||
termsText="By booking, you agree to our terms. We'll contact you to confirm your appointment."
|
termsText="By booking, you agree to our terms. We'll contact you to confirm your appointment."
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user