From 23247cc3cd061555cb323cdff67c3439388966ad Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:09:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++++++--------------------------------- 1 file changed, 10 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3048177..224dd36 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +