diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4edcf61..e1a218b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "@/styles/globals.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "VINTAGE CUTS Barbershop - Professional Haircuts in Brampton", description: "Premium barbering services in Brampton, ON. Expert fades, beard grooming, and classic haircuts. Call +1 (289) 946-4606 to book your appointment today.", keywords: "barbershop Brampton, haircut, barber, beard trim, fade, grooming services", metadataBase: new URL("https://vintagecutsbarber.com"),
- alternates: {
- canonical: "https://vintagecutsbarber.com"},
- openGraph: {
- title: "VINTAGE CUTS - Premier Barbershop in Brampton", description: "Experience professional barbering excellence. Expert barbers, welcoming atmosphere, quality service.", siteName: "VINTAGE CUTS", type: "website", url: "https://vintagecutsbarber.com", images: [
- {
- url: "http://img.b2bpic.net/free-photo/female-hairdresser-cutting-hair-bearded-hipster-male-saloon_613910-5643.jpg", alt: "VINTAGE CUTS Barbershop"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "VINTAGE CUTS - Premier Barbershop in Brampton", description: "Premium barbering services. Expert haircuts, beard grooming, and more.", images: ["http://img.b2bpic.net/free-photo/female-hairdresser-cutting-hair-bearded-hipster-male-saloon_613910-5643.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "VINTAGE CUTS Barbershop - Premium Barbering Excellence in Brampton", description: "Experience classic craftsmanship and modern styling at VINTAGE CUTS. Professional barbering services in Brampton, ON."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-