Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d31bad0a47 | |||
| 07c3e1d116 | |||
| 5396098504 | |||
| e09b81fab7 | |||
| d2a4c34669 | |||
| 3ae158ab98 | |||
| 3b83984c41 | |||
| 03169c4aca | |||
| 7814aa412e |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user