From 55dc4c1e7542936f48058c1152d8dbe370d24b98 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:29:17 +0000 Subject: [PATCH 1/2] Update src/app/browse/page.tsx --- src/app/browse/page.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/app/browse/page.tsx b/src/app/browse/page.tsx index 708449b..56c3f8b 100644 --- a/src/app/browse/page.tsx +++ b/src/app/browse/page.tsx @@ -3,6 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import Link from "next/link"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; import SplitAbout from "@/components/sections/about/SplitAbout"; import FooterMedia from "@/components/sections/footer/FooterMedia"; @@ -67,6 +68,21 @@ export default function BrowsePage() { /> +
+ +
+
); -} \ No newline at end of file +} -- 2.49.1 From 7e801efcb4f297ccbdd671eea36c28866c6ce827 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:29:18 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 70 ++++++---------------------------------------- 1 file changed, 9 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index aed7827..614a20f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Visit Oman - Discover & Plan Your Perfect Journey", - description: "Explore Oman's stunning destinations from desert dunes to mountain peaks. Plan your ideal itinerary with our smart travel platform.", - keywords: "Oman travel, tourism, destination guide, trip planner, Muscat, desert, mountains, beaches", - metadataBase: new URL("https://visitoman.com"), - alternates: { - canonical: "https://visitoman.com", - }, - openGraph: { - title: "Visit Oman - Discover the Beauty of Mountains, Deserts & Coastlines", - description: "Your premium guide to discovering and planning travel experiences across Oman's most beautiful destinations.", - url: "https://visitoman.com", - siteName: "Visit Oman", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/adventurous-young-man-desert_181624-35067.jpg", - alt: "Oman landscapes", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Visit Oman - Discover Your Next Adventure", - description: "Plan your perfect journey across Oman's mountains, deserts, and coastlines.", - images: ["http://img.b2bpic.net/free-photo/adventurous-young-man-desert_181624-35067.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Visit Oman", description: "Explore the beauty of Oman"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}