diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index bd7028c..e3cf4cc 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,50 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } 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 halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Oly's Cuts - Premium Barbershop & Grooming", description: "Experience premium barbering at Oly's Cuts. Expert cuts, beard grooming, and luxury shaving services by master barbers.", keywords: "barbershop, barber, haircuts, beard grooming, professional barber, premium grooming", openGraph: {
- title: "Oly's Cuts - Premium Barbershop", description: "Expert barbering and grooming services", siteName: "Oly's Cuts", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/medium-shot-man-getting-haircut_23-2149220585.jpg", alt: "Oly's Cuts Barbershop"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Oly's Cuts - Premium Barbershop", description: "Expert barbering and grooming services", images: ["http://img.b2bpic.net/free-photo/medium-shot-man-getting-haircut_23-2149220585.jpg"],
- },
-};
+ title: "Oly's Cuts - Premium Barbershop", description: "Premium barbershop experience with expert grooming and timeless style"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-