5 Commits

Author SHA1 Message Date
6851549d73 Update src/app/page.tsx 2026-03-04 18:17:14 +00:00
d33e8589da Update src/app/layout.tsx 2026-03-04 18:17:14 +00:00
4ec0483b69 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:14:59 +00:00
6af5a1c0eb Merge version_1 into main
Merge version_1 into main
2026-03-04 18:14:08 +00:00
7f3d2b180f Merge version_1 into main
Merge version_1 into main
2026-03-04 18:13:06 +00:00
2 changed files with 11 additions and 47 deletions

View File

@@ -1,57 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Inter } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ['latin'] });
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"],
});
export const metadata: Metadata = { 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"), title: 'CX Studio - Premium Barbershop',
alternates: { description: 'Experience expert barbering craftsmanship at CX Studio. Premium haircuts, beard trims, and professional grooming.',
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,
},
}; };
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={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -59,7 +59,7 @@ export default function LandingPage() {
]} ]}
testimonialRotationInterval={5000} testimonialRotationInterval={5000}
buttons={[ buttons={[
{ text: "Book Appointment", href: "#contact" }, { text: "Book Your Cut Now", href: "#contact" },
{ text: "View Services", href: "#services" }, { text: "View Services", href: "#services" },
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"