diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index b932878..74a9a69 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -80,7 +80,7 @@ export default function BookingPage() { title="Book Your Perfect Haircut" description="Choose your preferred barber, select your service, and secure your appointment. Professional grooming starts here." tag="Easy Booking" - imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-getting-haircut_23-2150665413.jpg" + imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-getting-haircut_23-2150665413.jpg?_wi=2" imageAlt="modern barber shop interior professional" showBlur={true} showDimOverlay={true} @@ -96,7 +96,7 @@ export default function BookingPage() { title="Schedule Your Appointment" description="Fill out the form below to reserve your spot. Our team will confirm your booking within 24 hours." tag="Booking Form" - imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-getting-haircut_23-2150665413.jpg" + imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-getting-haircut_23-2150665413.jpg?_wi=3" imageAlt="modern barber shop interior professional" showBlur={true} showDimOverlay={true} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..8ace61b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Raleway } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "BarberPro - Book Your Haircut Online", + description: "Premium barber shop offering professional haircuts, beard trimming, and grooming services. Book your appointment online with expert barbers.", + keywords: "barber, barbershop, haircut, beard trim, grooming, book appointment, salon", + openGraph: { + title: "BarberPro - Book Your Haircut Online", + description: "Premium barber shop offering professional haircuts, beard trimming, and grooming services. Book your appointment online with expert barbers.", + siteName: "BarberPro", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "BarberPro - Book Your Haircut Online", + description: "Premium barber shop offering professional haircuts, beard trimming, and grooming services.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}