diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2ac0d1e..033c921 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -80,7 +80,7 @@ export default function ContactPage() { tagAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/empty-hairdresser-shop-with-chairs_23-2149220584.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/empty-hairdresser-shop-with-chairs_23-2149220584.jpg?_wi=3", imageAlt: "Barbershop interior" } ]} diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 77b08b9..94c391e 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -80,7 +80,7 @@ export default function GalleryPage() { tagAnimation="slide-up" mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/back-view-man-wearing-hair-clip_23-2149872352.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/back-view-man-wearing-hair-clip_23-2149872352.jpg?_wi=3", imageAlt: "Professional haircut gallery" } ]} @@ -100,28 +100,28 @@ export default function GalleryPage() { id: "gallery-1", name: "Fade Cut", price: "Precision Work", - imageSrc: "http://img.b2bpic.net/free-photo/back-view-man-wearing-hair-clip_23-2149872352.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/back-view-man-wearing-hair-clip_23-2149872352.jpg?_wi=4", imageAlt: "Professional fade haircut" }, { id: "gallery-2", name: "Clippers Work", price: "Clean Lines", - imageSrc: "http://img.b2bpic.net/free-photo/shaving-cream-brush-set-desk_23-2148182005.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/shaving-cream-brush-set-desk_23-2148182005.jpg?_wi=2", imageAlt: "Barber using clippers" }, { id: "gallery-3", name: "Barbershop Setup", price: "Professional Studio", - imageSrc: "http://img.b2bpic.net/free-photo/tools-profession-hairdresser_23-2150668471.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/tools-profession-hairdresser_23-2150668471.jpg?_wi=2", imageAlt: "Barbershop chair and interior" }, { id: "gallery-4", name: "Haircut Detail", price: "Expert Styling", - imageSrc: "http://img.b2bpic.net/free-photo/back-view-man-wearing-hair-clip_23-2149872352.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/back-view-man-wearing-hair-clip_23-2149872352.jpg?_wi=5", imageAlt: "Detailed haircut work" } ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72092eb..914ea1a 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 { Poppins } 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 { Poppins } 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 poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,31 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); +export const metadata: Metadata = { + title: "Chatter House Barbershop | Professional Haircuts in Aiken", + description: "Professional haircuts, fades, and beard grooming in Aiken. Walk-ins welcome. Expert barbers for the perfect cut.", + keywords: "barbershop, haircuts, fades, beard trim, Aiken, barber", + metadataBase: new URL("https://chatterhouse-barbershop.com"), + alternates: { + canonical: "https://chatterhouse-barbershop.com" + }, + openGraph: { + title: "Chatter House Barbershop | Professional Haircuts in Aiken", + description: "Professional haircuts, fades, and beard grooming in Aiken. Walk-ins welcome.", + siteName: "Chatter House Barbershop", + type: "website" + }, + twitter: { + card: "summary_large_image", + title: "Chatter House Barbershop", + description: "Professional haircuts and fades in Aiken" + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +57,9 @@ export default function RootLayout({ return ( - + {children}