8 Commits

Author SHA1 Message Date
91b73869f9 Merge version_3 into main
Merge version_3 into main
2026-03-09 11:55:04 +00:00
1795b539c2 Update src/app/page.tsx 2026-03-09 11:55:00 +00:00
57cec103fe Update src/app/layout.tsx 2026-03-09 11:55:00 +00:00
6646c94b22 Merge version_2 into main
Merge version_2 into main
2026-03-09 11:53:01 +00:00
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 10 additions and 41 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

@@ -98,7 +98,7 @@ export default function LandingPage() {
<div id="about" data-section="about">
<SplitAbout
title="The Oly's Cuts Story"
description="Founded with a passion for precision and excellence, Oly's Cuts has been the trusted destination for premium grooming since 2015. We believe barbering is an art, and every cut is a masterpiece."
description="Since 2015 • 4 Master Barbers. Founded with a passion for precision and excellence, Oly's Cuts has been the trusted destination for premium grooming. We believe barbering is an art, and every cut is a masterpiece."
tag="Our Heritage"
tagIcon={Award}
tagAnimation="slide-up"
@@ -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: "#" },
@@ -243,4 +243,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}