Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +66,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -84,7 +84,7 @@ export default function HomePage() {
|
||||
title="Premium Barber Experience Awaits"
|
||||
description="Book your next haircut with our expert barbers. Professional service, modern techniques, and a welcoming atmosphere."
|
||||
tag="Professional Grooming"
|
||||
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=1"
|
||||
imageAlt="modern barber shop interior professional"
|
||||
showBlur={true}
|
||||
showDimOverlay={true}
|
||||
@@ -152,25 +152,25 @@ export default function HomePage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "Niche Baby",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hairdresser-posing-salon_23-2150462487.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hairdresser-posing-salon_23-2150462487.jpg?_wi=1",
|
||||
imageAlt: "professional barber portrait headshot",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marcus Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-adult-businesswoman-posing_23-2148452676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-adult-businesswoman-posing_23-2148452676.jpg?_wi=1",
|
||||
imageAlt: "young barber professional headshot",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David Smith",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-middle-age-bearded-male-dressed-plaid-flannel-shirt-grey-background_613910-16272.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-middle-age-bearded-male-dressed-plaid-flannel-shirt-grey-background_613910-16272.jpg?_wi=1",
|
||||
imageAlt: "experienced barber professional portrait",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Alex Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-hairdresser-with-scissors_23-2147839778.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-hairdresser-with-scissors_23-2147839778.jpg?_wi=1",
|
||||
imageAlt: "modern barber professional portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -99,25 +99,25 @@ export default function TeamPage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "Niche Baby",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hairdresser-posing-salon_23-2150462487.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-hairdresser-posing-salon_23-2150462487.jpg?_wi=2",
|
||||
imageAlt: "professional barber portrait headshot",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marcus Johnson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-adult-businesswoman-posing_23-2148452676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-adult-businesswoman-posing_23-2148452676.jpg?_wi=2",
|
||||
imageAlt: "young barber professional headshot",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David Smith",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-middle-age-bearded-male-dressed-plaid-flannel-shirt-grey-background_613910-16272.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-middle-age-bearded-male-dressed-plaid-flannel-shirt-grey-background_613910-16272.jpg?_wi=2",
|
||||
imageAlt: "experienced barber professional portrait",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Alex Rodriguez",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-hairdresser-with-scissors_23-2147839778.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-male-hairdresser-with-scissors_23-2147839778.jpg?_wi=2",
|
||||
imageAlt: "modern barber professional portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user