Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ded5780fdc | |||
| a47ea5b207 | |||
| 6851549d73 | |||
| d33e8589da | |||
| 4ec0483b69 | |||
| 6af5a1c0eb | |||
| 7f3d2b180f |
@@ -1,57 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CX Studio | Premium Barbershop Services", description: "Expert barbering at CX Studio. Premium haircuts, beard grooming, and professional grooming services with friendly staff and no long wait times.", keywords: "barbershop, haircuts, beard trim, barber, grooming, professional barber", metadataBase: new URL("https://cxstudio.com"),
|
||||
alternates: {
|
||||
canonical: "https://cxstudio.com"},
|
||||
openGraph: {
|
||||
title: "CX Studio | Premium Barbershop", description: "Experience expert barbering craftsmanship. Premium haircuts, beard grooming, and professional services.", url: "https://cxstudio.com", siteName: "CX Studio", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/side-view-man-getting-new-haircut_23-2148242786.jpg", alt: "CX Studio Barbershop"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CX Studio | Premium Barbershop", description: "Expert barbering services with friendly staff and quality craftsmanship.", images: ["http://img.b2bpic.net/free-photo/side-view-man-getting-new-haircut_23-2148242786.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: 'CX Studio - Premium Barbershop',
|
||||
description: 'Experience expert barbering craftsmanship at CX Studio. Premium haircuts, beard trims, and professional grooming.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
]}
|
||||
button={{ text: "Book Now", href: "#contact" }}
|
||||
button={{ text: "Book Your Cut Now", href: "#contact" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -49,17 +49,20 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
name: "Dlovan Abdulrahman", handle: "First-time Customer", testimonial: "First time here and I was impressed. Friendly staff, no long wait, and the haircut exceeded my expectations. This is my new go-to barber shop.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=1"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=1"
|
||||
},
|
||||
{
|
||||
name: "Keiran Lear", handle: "Regular Customer", testimonial: "Sharp hair cut and a good price, good head massage 💆 and not a long wait", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=2"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=2"
|
||||
},
|
||||
{
|
||||
name: "Mark Sanders", handle: "Satisfied Client", testimonial: "Great service and quality haircut and beard trim", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=3"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=3"
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
buttons={[
|
||||
{ text: "Book Appointment", href: "#contact" },
|
||||
{ text: "Book Your Cut Now", href: "#contact" },
|
||||
{ text: "View Services", href: "#services" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -118,13 +121,17 @@ export default function LandingPage() {
|
||||
tagIcon={Award}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Dlovan Abdulrahman", role: "Regular Client", testimonial: "First time here and I was impressed. Friendly staff, no long wait, and the haircut exceeded my expectations. This is my new go-to barber shop.", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=4", imageAlt: "Dlovan Abdulrahman"},
|
||||
id: "1", name: "Dlovan Abdulrahman", role: "Regular Client", testimonial: "First time here and I was impressed. Friendly staff, no long wait, and the haircut exceeded my expectations. This is my new go-to barber shop.", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=4", imageAlt: "Dlovan Abdulrahman"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Keiran Lear", role: "Satisfied Customer", testimonial: "Sharp hair cut and a good price, good head massage 💆 and not a long wait", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=5", imageAlt: "Keiran Lear"},
|
||||
id: "2", name: "Keiran Lear", role: "Satisfied Customer", testimonial: "Sharp hair cut and a good price, good head massage 💆 and not a long wait", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=5", imageAlt: "Keiran Lear"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Mark Sanders", role: "Loyal Client", testimonial: "Great service and quality haircut and beard trim", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=6", imageAlt: "Mark Sanders"},
|
||||
id: "3", name: "Mark Sanders", role: "Loyal Client", testimonial: "Great service and quality haircut and beard trim", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=6", imageAlt: "Mark Sanders"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Wilson", role: "Returning Customer", testimonial: "Best barbershop in town. The barbers are skilled professionals who truly care about their craft. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=7", imageAlt: "James Wilson"},
|
||||
id: "4", name: "James Wilson", role: "Returning Customer", testimonial: "Best barbershop in town. The barbers are skilled professionals who truly care about their craft. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=7", imageAlt: "James Wilson"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user