diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d67eb13..897b29c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "HotelHub - Book Hotels Instantly on Mobile", description: "Search and book hotels worldwide with our intuitive mobile app. Get instant confirmations, exclusive deals, and 24/7 support.", keywords: "hotel booking, mobile app, travel reservations, accommodation search", metadataBase: new URL("https://hotelhub.com"), - alternates: { - canonical: "https://hotelhub.com"}, - openGraph: { - title: "HotelHub - Hotel Booking Made Simple", description: "Discover perfect hotels and book with confidence using our mobile app.", url: "https://hotelhub.com", siteName: "HotelHub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/flat-design-travel-app-template_23-2151084910.jpg", alt: "HotelHub Mobile App Home Screen"}, - ], - }, - twitter: { - card: "summary_large_image", title: "HotelHub - Book Hotels Instantly", description: "Your perfect hotel awaits. Book now with HotelHub mobile app.", images: ["http://img.b2bpic.net/free-vector/flat-design-travel-app-template_23-2151084910.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "HotelHub - Book Your Perfect Stay", description: "Discover premium hotels, compare prices, and book with confidence. Your journey starts here."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -