diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index dfaaa52..24daa49 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,53 +1,20 @@
import type { Metadata } from "next";
-import { Manrope } from "next/font/google";
-import { DM_Sans } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
export const metadata: Metadata = {
- title: "Outset Barbershop | Premium Grooming & Haircuts", description: "Expert barbershop services including precision haircuts, beard grooming, and styling. Book your appointment with our master barbers today.", keywords: "barbershop, haircuts, beard grooming, barber, men's grooming, fade, styling", metadataBase: new URL("https://outset-barbershop.com"),
- alternates: {
- canonical: "https://outset-barbershop.com"
- },
- openGraph: {
- title: "Outset Barbershop | Premium Grooming", description: "Experience premium barbershop services with expert barbers specializing in precision cuts and grooming.", url: "https://outset-barbershop.com", siteName: "Outset Barbershop", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/funny-little-boy-is-getting-trendy-haircut-from-expirienced-barber-fashionable-hairdressing-salon-firs-time_613910-21469.jpg", alt: "Outset Barbershop Interior"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Outset Barbershop | Premium Grooming", description: "Expert haircuts and beard grooming services", images: ["http://img.b2bpic.net/free-photo/funny-little-boy-is-getting-trendy-haircut-from-expirienced-barber-fashionable-hairdressing-salon-firs-time_613910-21469.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Revv Barbers", description: "Premium grooming experience with precision cuts and expert styling"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-