From ab67d34748916f73b800c25ee4f8977aebed0ff7 Mon Sep 17 00:00:00 2001 From: development Date: Sat, 7 Feb 2026 04:12:03 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ba4c58f..101df01 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import TextAbout from '@/components/sections/about/TextAbout'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; @@ -33,8 +33,10 @@ export default function LuxuryTravelPage() { { name: "Destinations", id: "destinations" }, { name: "Services", id: "services" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" } - ]} + { name: "Contact", id: "contact" }, + + { name: "Blog", id: "/blog" }, +]} button={{ text: "Book Journey", href: "contact" }} @@ -57,25 +59,13 @@ export default function LuxuryTravelPage() {
-