5 Commits

Author SHA1 Message Date
ad03cdf831 Update src/app/page.tsx 2026-03-05 16:49:50 +00:00
4775d04f0a Update src/app/layout.tsx 2026-03-05 16:49:50 +00:00
d91c6dd24d Merge version_1 into main
Merge version_1 into main
2026-03-05 16:48:48 +00:00
87cfa0264e Merge version_1 into main
Merge version_1 into main
2026-03-05 16:48:03 +00:00
e596a0d18b Merge version_1 into main
Merge version_1 into main
2026-03-05 16:47:00 +00:00
2 changed files with 16 additions and 44 deletions

View File

@@ -1,54 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Clippers Barbershop | Premium Men's Grooming", description: "Expert barbershop services in your area. Professional haircuts, beard grooming, and styling by skilled barbers. Book your appointment today.", keywords: "barbershop, haircut, barber, beard grooming, men's grooming, styling", robots: { title: "Create Next App", description: "Generated by create next app"};
index: true,
follow: true,
},
openGraph: {
title: "Clippers Barbershop | Premium Men's Grooming", description: "Expert barbershop services. Professional haircuts and grooming by skilled barbers.", type: "website", siteName: "Clippers Barbershop", images: [
{
url: "http://img.b2bpic.net/free-photo/barber-putting-cape-clients-neck_107420-94792.jpg", alt: "Clippers Barbershop premium grooming experience"},
],
},
twitter: {
card: "summary_large_image", title: "Clippers Barbershop | Premium Men's Grooming", description: "Expert barbershop services. Professional haircuts and grooming.", images: [
"http://img.b2bpic.net/free-photo/barber-putting-cape-clients-neck_107420-94792.jpg"],
},
};
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={`${geist.variable} ${geistMono.variable}`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -91,7 +91,7 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
features={[ features={[
{ {
id: "haircuts", title: "Professional Haircuts", description: "Expert cutting techniques for every style and hair type. From classic fades to modern cuts.", tag: "Haircuts", imageSrc: "http://img.b2bpic.net/free-photo/handsome-hipster-bearded-male-sitting-armchair-barber-shop-while-hairdresser-shaves-his-beard-with-dangerous-razor_613910-18507.jpg?_wi=2" id: "shaving", title: "Hot Shave & Shampoo", description: "Luxurious hot shave experience with premium products and relaxing scalp massage.", tag: "Spa Services", imageSrc: "http://img.b2bpic.net/free-photo/barber-shop-retro-vintage-style_1150-17931.jpg?_wi=2"
}, },
{ {
id: "beard-trim", title: "Beard Trimming & Grooming", description: "Shape, trim, and groom your beard to perfection with premium beard care products.", tag: "Beard Care", imageSrc: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-18422.jpg?_wi=2" id: "beard-trim", title: "Beard Trimming & Grooming", description: "Shape, trim, and groom your beard to perfection with premium beard care products.", tag: "Beard Care", imageSrc: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-18422.jpg?_wi=2"
@@ -100,7 +100,7 @@ export default function LandingPage() {
id: "styling", title: "Hair Styling & Coloring", description: "Transform your look with our expert styling and professional coloring services.", tag: "Styling", imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-using-brush-dryer_23-2147769850.jpg?_wi=2" id: "styling", title: "Hair Styling & Coloring", description: "Transform your look with our expert styling and professional coloring services.", tag: "Styling", imageSrc: "http://img.b2bpic.net/free-photo/hairstylist-using-brush-dryer_23-2147769850.jpg?_wi=2"
}, },
{ {
id: "shaving", title: "Hot Shave & Shampoo", description: "Luxurious hot shave experience with premium products and relaxing scalp massage.", tag: "Spa Services", imageSrc: "http://img.b2bpic.net/free-photo/barber-shop-retro-vintage-style_1150-17931.jpg?_wi=2" id: "haircuts", title: "Professional Haircuts", description: "Expert cutting techniques for every style and hair type. From classic fades to modern cuts.", tag: "Haircuts", imageSrc: "http://img.b2bpic.net/free-photo/handsome-hipster-bearded-male-sitting-armchair-barber-shop-while-hairdresser-shaves-his-beard-with-dangerous-razor_613910-18507.jpg?_wi=2"
} }
]} ]}
/> />
@@ -205,10 +205,10 @@ export default function LandingPage() {
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [
{ label: "Haircuts", href: "#services" }, { label: "Hot Shave", href: "#services" },
{ label: "Beard Grooming", href: "#services" }, { label: "Beard Grooming", href: "#services" },
{ label: "Styling", href: "#services" }, { label: "Styling", href: "#services" },
{ label: "Hot Shave", href: "#services" } { label: "Haircuts", href: "#services" }
] ]
}, },
{ {