diff --git a/src/app/barbers/page.tsx b/src/app/barbers/page.tsx index 4b0bf62..f2dea79 100644 --- a/src/app/barbers/page.tsx +++ b/src/app/barbers/page.tsx @@ -56,7 +56,7 @@ export default function BarbersPage() { name: "Noor", role: "Master Barber & Founder", description: "With over 10 years of professional barbering experience, Noor specializes in modern fades, contemporary cuts, and precision styling. Known for his innovative techniques and ability to create custom looks that perfectly suit each client.", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-slavic-middle-aged-male-barber-uniform-holding-scissors-crossing-hands-isolated-purple-wall_141793-83015.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-slavic-middle-aged-male-barber-uniform-holding-scissors-crossing-hands-isolated-purple-wall_141793-83015.jpg?_wi=2", imageAlt: "Noor - Master Barber", }, { @@ -64,7 +64,7 @@ export default function BarbersPage() { name: "Ahmed", role: "Senior Barber", description: "Ahmed brings 8 years of expertise in traditional and modern barbering. He's particularly renowned for his exceptional beard grooming skills and hot towel shave services. Clients appreciate his calm demeanor and meticulous attention to detail.", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-bearded-man-smiling-looking-away-while-professional-barber-giving-him-haircut-copyspace_7502-5640.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-bearded-man-smiling-looking-away-while-professional-barber-giving-him-haircut-copyspace_7502-5640.jpg?_wi=2", imageAlt: "Ahmed - Senior Barber", }, ]} diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 6e9a08a..4a3b45d 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -52,7 +52,7 @@ export default function BookingPage() { title="Book Your Appointment" description="Complete the form below to request your appointment at Dream Land Barbershop. Our team will review your booking and send confirmation via email or WhatsApp." useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/front-view-hairstylist-cleaning-table_23-2148506330.jpg" + imageSrc="http://img.b2bpic.net/free-photo/front-view-hairstylist-cleaning-table_23-2148506330.jpg?_wi=3" imageAlt="Dream Land Barbershop" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ffff389..ba47813 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -51,7 +51,7 @@ export default function ContactPage() { title="Get In Touch" description="Have questions? Contact us directly or visit our barbershop. We're always happy to help!" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/front-view-hairstylist-cleaning-table_23-2148506330.jpg" + imageSrc="http://img.b2bpic.net/free-photo/front-view-hairstylist-cleaning-table_23-2148506330.jpg?_wi=4" imageAlt="Dream Land Barbershop Location" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..1cae3c8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Dream Land Barbershop - Professional Barbering in Bursa", + description: "Premium barbering services in Bursa. Expert barbers Noor and Ahmed. Book haircuts, beard grooming, and shaves online. Professional grooming experience.", + keywords: "barbershop Bursa, haircut, barber, beard grooming, professional shave, men's grooming", + metadataBase: new URL("https://dreamlandbarbershop.com"), + alternates: { + canonical: "https://dreamlandbarbershop.com", + }, + openGraph: { + title: "Dream Land Barbershop - Bursa", + description: "Premium barbering services with expert barbers Noor and Ahmed. Book online today.", + url: "https://dreamlandbarbershop.com", + siteName: "Dream Land Barbershop", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-hairstylist-cleaning-table_23-2148506330.jpg", + alt: "Dream Land Barbershop", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Dream Land Barbershop - Bursa", + description: "Premium barbering services with expert barbers.", + images: ["http://img.b2bpic.net/free-photo/front-view-hairstylist-cleaning-table_23-2148506330.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}