From 1ccf6c2f426345062b6657a543006673b0c495cf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:04:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d167524..929bc40 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Sunshine Style - Premium Barbershop in Paterson, NJ", description: "Paterson's sharpest cuts and premium grooming experience. Professional barbers, custom designs, fades, and beard services. Book your appointment today.", keywords: "barbershop Paterson NJ, fade haircut, beard trim, custom hair design, barber near me, professional grooming", metadataBase: new URL("https://sunshinestyle-barbershop.com"), - alternates: { - canonical: "https://sunshinestyle-barbershop.com"}, - openGraph: { - title: "Sunshine Style - Premium Barbershop in Paterson", description: "Experience precision cuts and premium grooming at Paterson's finest barbershop.", url: "https://sunshinestyle-barbershop.com", siteName: "Sunshine Style", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-4312.jpg", alt: "Sunshine Style Barbershop Premium Grooming"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Sunshine Style - Paterson's Sharpest Cuts", description: "Premium barbershop with precision fades, custom designs, and professional grooming services.", images: ["http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-4312.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Sunshine Style Barbershop", description: "Premium barbershop in Paterson, NJ - Expert cuts, fades, beard grooming, and custom designs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}