Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +79,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -72,15 +72,15 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
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=1",
|
||||
imageAlt: "Dream Land Barbershop Interior",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205870.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205870.jpg?_wi=1",
|
||||
imageAlt: "Professional Haircut Service",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-lies-with-open-eyes-while-barber-cuts-his-beard_1304-2776.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-lies-with-open-eyes-while-barber-cuts-his-beard_1304-2776.jpg?_wi=1",
|
||||
imageAlt: "Beard Grooming Service",
|
||||
},
|
||||
]}
|
||||
@@ -97,7 +97,7 @@ export default function HomePage() {
|
||||
description="Dream Land is a professional barbershop dedicated to providing exceptional grooming services. Located in the heart of Bursa at 7. Turan Sk. 9, we pride ourselves on attention to detail and customer satisfaction."
|
||||
subdescription="With experienced barbers Noor and Ahmed, we offer a wide range of services from classic haircuts to modern styling. Every client is treated with respect and care, ensuring you leave feeling confident and refreshed."
|
||||
icon={Award}
|
||||
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=2"
|
||||
imageAlt="Dream Land Barbershop"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -118,7 +118,7 @@ export default function HomePage() {
|
||||
name: "Noor",
|
||||
role: "Master Barber",
|
||||
description: "Specializing in modern cuts and fade techniques with over 10 years of experience.",
|
||||
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=1",
|
||||
imageAlt: "Noor - Master Barber",
|
||||
},
|
||||
{
|
||||
@@ -126,7 +126,7 @@ export default function HomePage() {
|
||||
name: "Ahmed",
|
||||
role: "Senior Barber",
|
||||
description: "Expert in beard grooming and classic styling. Known for precision and 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=1",
|
||||
imageAlt: "Ahmed - Senior Barber",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -48,14 +48,14 @@ export default function ServicesPage() {
|
||||
id: 1,
|
||||
title: "Haircut & Styling",
|
||||
description: "Professional haircuts featuring modern cuts, fades, and classic styles. Our barbers customize each cut to suit your face shape and preferences.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205870.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-grooming-their-client_23-2149205870.jpg?_wi=2",
|
||||
imageAlt: "Haircut Service",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Beard Grooming",
|
||||
description: "Expert beard trimming, shaping, and maintenance. We use premium products to keep your beard healthy and looking sharp.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-lies-with-open-eyes-while-barber-cuts-his-beard_1304-2776.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-man-lies-with-open-eyes-while-barber-cuts-his-beard_1304-2776.jpg?_wi=2",
|
||||
imageAlt: "Beard Grooming Service",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user