16 Commits

Author SHA1 Message Date
e5405e6503 Update src/app/browse/page.tsx 2026-03-06 20:34:07 +00:00
0ac2c41f59 Update src/app/browse/page.tsx 2026-03-06 20:33:17 +00:00
c84b7720c1 Update src/app/browse/page.tsx 2026-03-06 20:32:07 +00:00
9fb0b9731c Update src/app/browse/page.tsx 2026-03-06 20:30:38 +00:00
7e801efcb4 Update src/app/layout.tsx 2026-03-06 20:29:18 +00:00
55dc4c1e75 Update src/app/browse/page.tsx 2026-03-06 20:29:17 +00:00
4a354a0d6a Merge version_1 into main
Merge version_1 into main
2026-03-06 20:27:47 +00:00
efc8304e0a Merge version_1 into main
Merge version_1 into main
2026-03-06 20:27:37 +00:00
f95fc547aa Merge version_1 into main
Merge version_1 into main
2026-03-06 20:27:28 +00:00
e419418c03 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:27:13 +00:00
f6f1fa01fd Merge version_1 into main
Merge version_1 into main
2026-03-06 20:27:00 +00:00
f07d779327 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:26:49 +00:00
b982d9b74d Merge version_1 into main
Merge version_1 into main
2026-03-06 20:26:37 +00:00
0f11473343 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:26:21 +00:00
e4e590ccfa Merge version_1 into main
Merge version_1 into main
2026-03-06 20:17:21 +00:00
0db510c0e0 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:16:17 +00:00
2 changed files with 28 additions and 63 deletions

View File

@@ -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,22 @@ export default function BrowsePage() {
/>
</div>
<div id="hero" data-section="hero">
<HeroSplit
title="Explore Oman's Best Destinations"
description="Discover breathtaking landscapes, rich culture, and unforgettable experiences across Oman's most remarkable destinations."
imageSrc="http://img.b2bpic.net/free-photo/landscape-sky-is-reflected-sea-setting-light-city-coastline-with-mountains-horizon_169016-8684.jpg?_wi=1"
imageAlt="Oman landscape"
buttons={[
{ text: "Explore More", href: "#all-destinations" },
{ text: "Plan Your Trip", href: "#destination-guide" },
]}
imagePosition="right"
background={{ variant: "plain" }}
mediaAnimation="opacity"
/>
</div>
<div id="all-destinations" data-section="all-destinations">
<ProductCardThree
title="Browse All Destinations"
@@ -78,7 +95,7 @@ export default function BrowsePage() {
products={[
{
id: "muscat", name: "Muscat", price: "Moderate", imageSrc:
"http://img.b2bpic.net/free-photo/landscape-sky-is-reflected-sea-setting-light-city-coastline-with-mountains-horizon_169016-8684.jpg", imageAlt: "Muscat city coastline"},
"http://img.b2bpic.net/free-photo/landscape-sky-is-reflected-sea-setting-light-city-coastline-with-mountains-horizon_169016-8684.jpg?_wi=2", imageAlt: "Muscat city coastline"},
{
id: "nizwa", name: "Nizwa", price: "Budget", imageSrc:
"http://img.b2bpic.net/free-photo/closeup-shot-buildings-made-concrete-sun-morocco_181624-16067.jpg", imageAlt: "Nizwa historic fort"},
@@ -133,4 +150,4 @@ export default function BrowsePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}