diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14a819e..6469d3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1437 +1,35 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import ServiceWrapper from "@/providers/serviceWrapper"; +import { Tag } from "@/components/tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "IFE Voyages - Travel Agency in Benin | Book Flights & Visa", - description: "Trusted travel agency in Cotonou, Benin. Book flights, get visa assistance, and explore travel packages. 4.4★ rated with 10+ years experience.", - keywords: "travel agency Benin, travel agency Cotonou, visa assistance Benin, cheap flights Benin, travel packages, flight booking", - metadataBase: new URL("https://ifevoyages.com"), - alternates: { - canonical: "https://ifevoyages.com", - }, - openGraph: { - title: "IFE Voyages - Your Trusted Travel Agency", - description: "Professional travel services in Benin. Flight bookings, visa assistance, and curated travel packages.", - siteName: "IFE Voyages", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/business-man-woman-are-going-business-trip_1150-3033.jpg", - alt: "IFE Voyages travel services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "IFE Voyages Travel Agency", - description: "Book your next adventure with Benin's most trusted travel agency.", - images: ["http://img.b2bpic.net/free-photo/business-man-woman-are-going-business-trip_1150-3033.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "IFE Voyages - Your Trusted Travel Agency in Benin", description: "Book flights, get visa assistance, and explore travel packages with Benin's most trusted travel agency. Over 10 years of experience."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +