Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d2a4c34669 | |||
| 3ae158ab98 | |||
| 3b83984c41 | |||
| 03169c4aca | |||
| 7814aa412e |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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." },
|
||||||
|
|||||||
Reference in New Issue
Block a user