6 Commits

Author SHA1 Message Date
09ebf9add3 Update src/app/page.tsx 2026-03-06 00:57:02 +00:00
41368dbba1 Update src/app/layout.tsx 2026-03-06 00:57:01 +00:00
7b5bc82056 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:55:53 +00:00
60497b0256 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:55:08 +00:00
1ae424213c Merge version_1 into main
Merge version_1 into main
2026-03-06 00:53:42 +00:00
ae05ec9b96 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:52:29 +00:00
2 changed files with 13 additions and 29 deletions

View File

@@ -1,43 +1,28 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
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: {
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."},
};
title: "A's Barbershop", description: "Premium cuts and timeless style at A's Barbershop"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1405,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
tagIcon={Scissors}
tagAnimation="slide-up"
buttons={[
{ text: "Book Now", href: "#contact" },
{ text: "Book Your Cut", href: "#contact" },
{ text: "Learn More", href: "#services" },
]}
buttonAnimation="slide-up"