4 Commits

Author SHA1 Message Date
dac3db9e72 Update src/app/page.tsx 2026-03-09 11:52:57 +00:00
602b3ccb35 Update src/app/layout.tsx 2026-03-09 11:52:55 +00:00
8d42285b3e Merge version_1 into main
Merge version_1 into main
2026-03-09 11:50:58 +00:00
2a19dae8e6 Merge version_1 into main
Merge version_1 into main
2026-03-09 11:49:45 +00:00
2 changed files with 7 additions and 38 deletions

View File

@@ -1,50 +1,20 @@
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";
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: "Oly's Cuts - Premium Barbershop & Grooming", description: "Experience premium barbering at Oly's Cuts. Expert cuts, beard grooming, and luxury shaving services by master barbers.", keywords: "barbershop, barber, haircuts, beard grooming, professional barber, premium grooming", openGraph: {
title: "Oly's Cuts - Premium Barbershop", description: "Expert barbering and grooming services", siteName: "Oly's Cuts", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-man-getting-haircut_23-2149220585.jpg", alt: "Oly's Cuts Barbershop"},
],
},
twitter: {
card: "summary_large_image", title: "Oly's Cuts - Premium Barbershop", description: "Expert barbering and grooming services", images: ["http://img.b2bpic.net/free-photo/medium-shot-man-getting-haircut_23-2149220585.jpg"],
},
};
title: "Oly's Cuts - Premium Barbershop", description: "Premium barbershop experience with expert grooming and timeless style"};
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: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -199,7 +199,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to experience premium grooming? Book your appointment today and discover the Oly's Cuts difference."
text="Limited availability this week - Book your premium cut before slots fill up. Reserve your spot now for an unforgettable grooming experience."
animationType="entrance-slide"
buttons={[
{ text: "Book Now", href: "#" },