diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 97cd388..78d794f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1440 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hajj & Umrah Services - Al Sabil Ul Kaba", - description: "Trusted hajj and umrah pilgrimage services with 20+ years experience. Expert guides, transparent pricing, and 24/7 support for your sacred journey.", - keywords: "hajj services, umrah packages, pilgrimage, mecca medina, islamic travel", - metadataBase: new URL("https://alsabilulkaba.com"), - alternates: { - canonical: "https://alsabilulkaba.com", - }, - openGraph: { - title: "Al Sabil Ul Kaba - Your Sacred Pilgrimage Partner", - description: "Experience professional hajj and umrah services with expert guides and complete travel arrangements.", - siteName: "Al Sabil Ul Kaba", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/eid-al-adha-mubarak-islamic-background_1055-7013.jpg", - alt: "Holy Kaaba - Al Sabil Ul Kaba", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Al Sabil Ul Kaba Hajj & Umrah Services", - description: "Trusted pilgrimage services for your sacred journey", - images: ["http://img.b2bpic.net/free-vector/eid-al-adha-mubarak-islamic-background_1055-7013.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Al Sabil Ul Kaba - Hajj & Umrah Services", description: "Experience the spiritual pilgrimage of a lifetime with Al Sabil Ul Kaba. Expert guidance, seamless arrangements, and unforgettable memories."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -