From f49675bd2c92e29f864bb54bf867e0b268bc6d19 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:33:43 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5494f2b..b4fd2c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,38 +1,27 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Tandurei - Authentic Indian Restaurant in Maun", description: "Experience authentic Indian cuisine at Tandurei in Maun. Dine-in, takeaway, and delivery available. Premium tandoori, curries, and traditional dishes.", keywords: "Indian restaurant Maun, tandoori chicken, authentic Indian food, Indian cuisine Botswana, takeaway delivery", metadataBase: new URL("https://tandurei-maun.com"), + title: "Botshelo Hotel - Luxury Accommodation in Maun, Botswana", description: "Experience comfort and elegance at Botshelo Hotel in Maun. Premium rooms, fine dining, and warm hospitality in the heart of the Okavango Delta region.", keywords: "hotel Maun, accommodation Botswana, luxury rooms Maun, Okavango Delta hotels, booking Maun", metadataBase: new URL("https://botshelo-hotel.bw"), alternates: { - canonical: "https://tandurei-maun.com" + canonical: "https://botshelo-hotel.bw" }, openGraph: { - title: "Tandurei - Authentic Indian Restaurant in Maun", description: "Experience authentic Indian cuisine with traditional tandoori specialties, aromatic curries, and premium dishes.", url: "https://tandurei-maun.com", siteName: "Tandurei The Indian Restaurant", type: "website", images: [ + title: "Botshelo Hotel - Luxury Accommodation in Maun", description: "Discover comfort, elegance, and warm hospitality at Botshelo Hotel in Maun, Botswana.", url: "https://botshelo-hotel.bw", siteName: "Botshelo Hotel", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/side-view-baked-chicken-with-cucumber-lemon-seasoning-bread-table_141793-4757.jpg", alt: "Tandurei authentic Indian cuisine" + url: "https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1200&h=630&fit=crop", alt: "Botshelo Hotel luxury accommodation" } ] }, twitter: { - card: "summary_large_image", title: "Tandurei - Authentic Indian Restaurant in Maun", description: "Discover authentic Indian flavours and warm hospitality at Tandurei.", images: ["http://img.b2bpic.net/free-photo/side-view-baked-chicken-with-cucumber-lemon-seasoning-bread-table_141793-4757.jpg"] + card: "summary_large_image", title: "Botshelo Hotel - Luxury Accommodation in Maun", description: "Experience comfort and elegance at Botshelo Hotel in Maun.", images: ["https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1200&h=630&fit=crop"] }, robots: { index: true, @@ -48,9 +37,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From d733e00b6ea8697f425ac24cb1a0fd5168efccfe Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:33:44 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 240 ++++++++++++++++++++++++++++------------------- 1 file changed, 145 insertions(+), 95 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4cdc310..3f29a77 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,32 +9,32 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { MapPin, UtensilsCrossed } from 'lucide-react'; +import { MapPin, Phone, Star, Shield, Clock, Users } from 'lucide-react'; export default function LandingPage() { return (