Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1795b539c2 | |||
| 57cec103fe | |||
| 6646c94b22 | |||
| dac3db9e72 | |||
| 602b3ccb35 | |||
| 8d42285b3e | |||
| 2a19dae8e6 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user