Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 17:09:26 +00:00
2 changed files with 12 additions and 34 deletions

View File

@@ -1,50 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import { Raleway, Inter } 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 raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
title: "Main Attraction Barber | Premium Barbershop in Sumter, SC", description: "Expert barbering services in Sumter, South Carolina. Professional haircuts, beard grooming, and traditional shaves. Book your appointment today.", keywords: "barbershop Sumter SC, barber shop, men's haircuts, beard grooming, shaves, professional barber", openGraph: {
title: "Main Attraction Barber | Premium Barbershop in Sumter, SC", description: "Experience premium barbering services in Sumter, SC. Expert haircuts, beard work, and traditional shaves.", siteName: "Main Attraction Barber", type: "website"},
twitter: {
card: "summary_large_image", title: "Main Attraction Barber | Premium Barbershop in Sumter, SC", description: "Premium barbering services in Sumter, South Carolina"},
robots: {
index: true,
follow: true,
},
};
title: "Main Attraction Barber - Premium Barbering in Sumter", description: "Professional barbering services in Sumter. Expert haircuts, beard grooming, and traditional shaves."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${raleway.variable} ${inter.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -199,9 +199,10 @@ export default function LandingPage() {
animationType="entrance-slide"
background={{ variant: "plain" }}
useInvertedBackground={false}
buttonClassName="px-8 font-semibold text-base"
buttons={[
{ text: "Book Appointment", href: "contact" },
{ text: "Call Us Now", href: "tel:+18035551234" },
{ text: "Get Directions & Hours", href: "https://maps.google.com" },
]}
/>
</div>