5 Commits

Author SHA1 Message Date
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 8 additions and 38 deletions

View File

@@ -1,49 +1,20 @@
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 { Nunito_Sans } from "next/font/google";
import "./globals.css"; 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 nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
export const metadata: Metadata = { 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", description: "Premium barbering services with expert barbers"};
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,
},
};
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} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -85,8 +85,8 @@ export default function LandingPage() {
<FeatureBorderGlow <FeatureBorderGlow
title="Our Services" title="Our Services"
description="Expertly crafted grooming services tailored to meet your unique style and needs." description="Expertly crafted grooming services tailored to meet your unique style and needs."
tag="Premium Grooming" tag="Expert Barbers"
tagIcon={CheckCircle} tagIcon={Shield}
tagAnimation="slide-up" tagAnimation="slide-up"
features={[ features={[
{ icon: Scissors, title: "Professional Haircuts", description: "Classic to contemporary styles, expertly executed with precision and attention to detail." }, { icon: Scissors, title: "Professional Haircuts", description: "Classic to contemporary styles, expertly executed with precision and attention to detail." },