From a2256c4256a1768cc947ca0126d5ffc6acf73daf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 14:39:47 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..eb0be00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,41 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "TravelStay - Find Hotels & Restaurants Worldwide", + description: "Discover and book the perfect hotel or restaurant worldwide. Search by location, filter by price (budget to luxury) and ratings (1-5 stars), and make instant reservations.", + keywords: "hotels, restaurants, travel booking, accommodations, dining, location search, price filtering, star ratings, travel discovery", + metadataBase: new URL("https://travelstay.com"), + alternates: { + canonical: "https://travelstay.com", + }, + openGraph: { + title: "TravelStay - Find Your Perfect Hotel or Restaurant", + description: "Search and book verified hotels and restaurants worldwide by location, price, and rating.", + url: "https://travelstay.com", + siteName: "TravelStay", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", + alt: "TravelStay - Hotel and Restaurant Discovery", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TravelStay - Find Hotels & Restaurants", + description: "Discover verified accommodations and dining venues by location and ratings.", + images: [ + "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}