Merge version_1 into main #1
@@ -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"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -87,7 +87,7 @@ export default function HomePage() {
|
||||
buttonAnimation="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=1",
|
||||
imageAlt: "Professional barbershop with barber styling client"
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -80,7 +80,7 @@ export default function ServicesPage() {
|
||||
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=2",
|
||||
imageAlt: "Professional barbershop interior"
|
||||
}
|
||||
]}
|
||||
@@ -100,28 +100,28 @@ export default function ServicesPage() {
|
||||
id: "service-1",
|
||||
name: "Haircut",
|
||||
price: "Standard Cut",
|
||||
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=1",
|
||||
imageAlt: "Professional men's haircut"
|
||||
},
|
||||
{
|
||||
id: "service-2",
|
||||
name: "Fade",
|
||||
price: "Precision Fade",
|
||||
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=1",
|
||||
imageAlt: "Professional fade haircut"
|
||||
},
|
||||
{
|
||||
id: "service-3",
|
||||
name: "Beard Trim",
|
||||
price: "Beard Grooming",
|
||||
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=1",
|
||||
imageAlt: "Barbershop styling chair"
|
||||
},
|
||||
{
|
||||
id: "service-4",
|
||||
name: "Kids Haircut",
|
||||
price: "Youth Cut",
|
||||
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=2",
|
||||
imageAlt: "Kids haircut service"
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user