Switch to version 1: modified src/app/browse/page.tsx

This commit is contained in:
2026-03-06 20:56:44 +00:00
parent 60012dc2e8
commit 71ad56be46

View File

@@ -3,7 +3,6 @@
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";
@@ -68,22 +67,6 @@ 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"
@@ -95,7 +78,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?_wi=2", 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", 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"},
@@ -150,4 +133,4 @@ export default function BrowsePage() {
</div>
</ThemeProvider>
);
}
}