9 Commits

Author SHA1 Message Date
d31bad0a47 Merge version_3 into main
Merge version_3 into main
2026-03-05 04:39:55 +00:00
07c3e1d116 Update src/app/page.tsx 2026-03-05 04:39:51 +00:00
5396098504 Update src/app/layout.tsx 2026-03-05 04:39:51 +00:00
e09b81fab7 Merge version_2 into main
Merge version_2 into main
2026-03-05 04:38:01 +00:00
d2a4c34669 Update src/app/page.tsx 2026-03-05 04:37:57 +00:00
3ae158ab98 Update src/app/layout.tsx 2026-03-05 04:37:57 +00:00
3b83984c41 Merge version_1 into main
Merge version_1 into main
2026-03-05 04:36:24 +00:00
03169c4aca Merge version_1 into main
Merge version_1 into main
2026-03-05 04:35:24 +00:00
7814aa412e Merge version_1 into main
Merge version_1 into main
2026-03-05 04:34:26 +00:00
2 changed files with 11 additions and 41 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_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 nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Stevie A Barbershop | Expert Haircuts & Grooming", description: "Premium barbershop offering expert haircuts, precision shaves, and beard grooming services. Book your appointment at Stevie A Barbershop today.", keywords: "barbershop, haircuts, shaves, beard grooming, professional barber, salon, men's grooming", openGraph: {
title: "Stevie A Barbershop | Expert Haircuts & Grooming", description: "Premium barbershop offering expert haircuts, precision shaves, and beard grooming services.", siteName: "Stevie A Barbershop", type: "website"},
twitter: {
card: "summary_large_image", title: "Stevie A Barbershop", description: "Expert barbering services and professional grooming"},
robots: {
index: true,
follow: true,
},
};
title: "Stevie A Barbershop", description: "Premium barbering services with expert barbers"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -55,7 +55,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Book Appointment", href: "#contact" },
{ text: "Book Your Cut Now", href: "#contact" },
{ text: "View Services", href: "#services" }
]}
buttonAnimation="slide-up"
@@ -85,8 +85,8 @@ export default function LandingPage() {
<FeatureBorderGlow
title="Our Services"
description="Expertly crafted grooming services tailored to meet your unique style and needs."
tag="Premium Grooming"
tagIcon={CheckCircle}
tag="Expert Barbers"
tagIcon={Shield}
tagAnimation="slide-up"
features={[
{ icon: Scissors, title: "Professional Haircuts", description: "Classic to contemporary styles, expertly executed with precision and attention to detail." },
@@ -182,4 +182,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}