From 2a1b2daa31198feb2f60262624a84550c3a1cdee Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 14:42:26 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 318 ++++++++++++----------------------------------- 1 file changed, 79 insertions(+), 239 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4600949..6fba74a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCar import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Sparkles, TrendingUp, DollarSign, MessageCircle, HelpCircle, Mail, MapPin, Crown } from "lucide-react"; +import { Sparkles, TrendingUp, DollarSign, MessageCircle, HelpCircle, Mail, MapPin, Crown, Search, Star, Filter, MapMarked } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -24,35 +24,31 @@ export default function HomePage() { const footerColumns = [ { - title: "Explore", - items: [ - { label: "Search Hotels", href: "/search" }, - { label: "Browse Restaurants", href: "/listings" }, - { label: "Pricing Plans", href: "/pricing" }, - { label: "View All Listings", href: "/listings" }, + title: "Discover", items: [ + { label: "Search Hotels", href: "#search" }, + { label: "Browse Restaurants", href: "#listings" }, + { label: "View All Listings", href: "#listings" }, + { label: "Popular Destinations", href: "#listings" }, ], }, { - title: "Company", - items: [ - { label: "About Us", href: "#about" }, - { label: "Blog & Tips", href: "#blog" }, - { label: "Careers", href: "#careers" }, - { label: "Press Kit", href: "#press" }, + title: "Explore", items: [ + { label: "Hotel Categories", href: "#listings" }, + { label: "Restaurant Types", href: "#listings" }, + { label: "Budget Stays", href: "#listings" }, + { label: "Luxury Properties", href: "#listings" }, ], }, { - title: "Support", - items: [ - { label: "Help Center", href: "#help" }, - { label: "Contact Us", href: "/contact" }, - { label: "Report Issue", href: "#report" }, - { label: "Feedback", href: "#feedback" }, + title: "Support", items: [ + { label: "Help Center", href: "#faq" }, + { label: "Contact Us", href: "#contact" }, + { label: "Report Issue", href: "#contact" }, + { label: "Feedback", href: "#contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#privacy" }, { label: "Terms of Service", href: "#terms" }, { label: "Cookie Policy", href: "#cookies" }, @@ -79,9 +75,7 @@ export default function HomePage() { navItems={navItems} brandName="TravelStay" button={{ - text: "Start Exploring", - href: "/", - }} + text: "Start Exploring", href: "/"}} /> @@ -91,18 +85,13 @@ export default function HomePage() { description="Discover the perfect hotel or restaurant anywhere in the world. Filter by price, ratings, location, and amenities to find exactly what you need—from budget-friendly stays to luxury destinations." buttons={[ { - text: "Start Searching", - href: "#search", - }, + text: "Start Searching", href: "#search"}, { - text: "Browse Listings", - href: "#listings", - }, + text: "Browse Listings", href: "#listings"}, ]} buttonAnimation="slide-up" background={{ - variant: "radial-gradient", - }} + variant: "radial-gradient"}} imageSrc="http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg" imageAlt="Travel and hotel discovery" mediaAnimation="blur-reveal" @@ -113,44 +102,26 @@ export default function HomePage() {
@@ -158,51 +129,21 @@ export default function HomePage() {
@@ -220,69 +159,35 @@ export default function HomePage() {
@@ -440,4 +280,4 @@ export default function HomePage() {
); -} \ No newline at end of file +} -- 2.49.1