diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d2929e5..a987e52 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,52 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } 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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Barbershop Andi | Premium Haircuts & Beard Grooming in Durrës", description: "Elite barbershop in Durrës offering precision fades, modern haircuts, and expert beard grooming. Experience luxury craftsmanship with Andi and Aldo.", keywords: "barbershop, haircut, fade, beard grooming, Durrës, barber, premium cuts, styling", metadataBase: new URL("https://barbershopandi.com"),
- alternates: {
- canonical: "https://barbershopandi.com"},
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Barbershop Andi | Premium Barbershop in Durrës", description: "Precision fades. Sharp styles. A barbershop where every client is treated like family.", type: "website", url: "https://barbershopandi.com", siteName: "Barbershop Andi", images: [
- {
- url: "http://img.b2bpic.net/free-photo/front-view-male-barber-holding-scissors-barbershop_23-2148985745.jpg", alt: "Premium barbershop experience at Barbershop Andi"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Barbershop Andi | Elite Cuts in Durrës", description: "Experience precision barbering at its finest. Fades, cuts, and grooming tailored to you.", images: ["http://img.b2bpic.net/free-photo/front-view-male-barber-holding-scissors-barbershop_23-2148985745.jpg"],
- },
-};
+ title: "Barbershop Andi - Premium Haircuts & Grooming", description: "Book in seconds, look sharp all week. Elite haircuts, detailed fades, and a barbershop atmosphere that feels like family."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-