diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8e01039..914eb65 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,18 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Nunito_Sans } 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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans", subsets: ["latin"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
export const metadata: Metadata = {
- title: "Apex Precision Barbershop | Expert Barber Services", description: "Premier barbershop offering expert haircuts, beard grooming, and traditional shaves. Expert barbers dedicated to precision and your perfect look. Book online today.", keywords: "barbershop, haircut, beard grooming, barber near me, professional barber, fade haircut, traditional shave", metadataBase: new URL("https://apexprecisionbarbershop.com"),
- alternates: {
- canonical: "https://apexprecisionbarbershop.com"},
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Apex Precision Barbershop | Expert Barber Services", description: "Premier barbershop offering expert haircuts, beard grooming, and traditional shaves. Book your appointment today.", url: "https://apexprecisionbarbershop.com", siteName: "Apex Precision Barbershop", type: "website", images: [
- {
- url: "https://apexprecisionbarbershop.com/og-image.jpg", alt: "Apex Precision Barbershop"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Apex Precision Barbershop | Expert Barber Services", description: "Premier barbershop with expert haircuts, beard grooming, and traditional shaves.", images: ["https://apexprecisionbarbershop.com/twitter-image.jpg"],
- },
-};
+ title: "Apex Precision Barbershop", description: "Expert barber services in Moreno Valley, CA. Precision haircuts, straight razor shaves, and professional grooming."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-