diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 87b8f89..3a5cc06 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,60 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Poppins } 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 poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Ten Thirty Barber Stylist | Premium Barbershop", description: "Premium barbershop offering expert haircuts, traditional shaves, and beard grooming. Book your appointment today.", keywords: "barbershop, haircut, shave, beard grooming, barber, men grooming, premium haircut", metadataBase: new URL("https://example.com"),
- alternates: {
- canonical: "https://example.com"
- },
- openGraph: {
- title: "Ten Thirty Barber Stylist", description: "Experience premium barbering and men's grooming at Ten Thirty. Expert barbers, timeless cuts, traditional shaves.", url: "https://example.com", siteName: "Ten Thirty Barber Stylist", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/hairdresser-starting-work-with-client_23-2147769744.jpg", alt: "modern barbershop interior clean aesthetic"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Ten Thirty Barber Stylist", description: "Premium barbershop for expert haircuts and grooming.", images: ["http://img.b2bpic.net/free-photo/hairdresser-starting-work-with-client_23-2147769744.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Ten Thirty Barber Stylist", description: "Premium barbershop crafting timeless styles and refined grooming experiences"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-