Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50caff645e | |||
| 09ebf9add3 | |||
| 41368dbba1 | |||
| 7b5bc82056 | |||
| 60497b0256 | |||
| 1ae424213c | |||
| ae05ec9b96 |
@@ -1,43 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "A'S BARBERSHOP | Professional Haircuts & Grooming", description: "Premium barbershop services including professional haircuts, fades, and straight razor shaves. Book your appointment with our expert barbers today.", keywords: "barbershop, haircuts, professional grooming, barber, fades, shaves, local barbershop", robots: {
|
title: "A's Barbershop", description: "Premium cuts and timeless style at A's Barbershop"};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "A'S BARBERSHOP | Professional Haircuts & Grooming", description: "Experience quality haircuts and grooming services at A's Barbershop. Expert barbers, competitive pricing, and a welcoming atmosphere.", type: "website", siteName: "A'S BARBERSHOP"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "A'S BARBERSHOP | Premium Cuts, Timeless Style", description: "Book your appointment with expert barbers today."},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1405,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ export default function LandingPage() {
|
|||||||
tagIcon={Scissors}
|
tagIcon={Scissors}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Now", href: "#contact" },
|
{ text: "Book Your Cut", href: "#contact" },
|
||||||
{ text: "Learn More", href: "#services" },
|
{ text: "Learn More", href: "#services" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user