diff --git a/src/app/page.tsx b/src/app/page.tsx index bf6316f..bea2ff2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,32 +10,31 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { CheckCircle, CreditCard, Lock, Mail, MessageSquare, Package, ShoppingBag, Shield, Star, User } from 'lucide-react'; +import { CheckCircle, CreditCard, Lock, Mail, MessageSquare, Package, ShoppingBag, Shield, Star, User, Heart, Filter, TrendingUp } from 'lucide-react'; export default function LandingPage() { return ( @@ -43,30 +42,30 @@ export default function LandingPage() {
@@ -81,16 +80,19 @@ export default function LandingPage() { }, { id: "3", name: "Modern Table Lamp", price: "$62.99", imageSrc: "http://img.b2bpic.net/free-photo/couch-with-cushions-glass-table_1203-764.jpg", imageAlt: "Modern table lamp" + }, + { + id: "4", name: "Stylish Backpack", price: "$54.99", imageSrc: "http://img.b2bpic.net/free-photo/man-in-business-suit-holding-briefcase_1163-5163.jpg", imageAlt: "Stylish backpack" } ]} - title="Featured Products" - description="Handpicked selection of bestsellers from our marketplace. Browse our most popular items with verified customer ratings." + title="Featured Collections" + description="Handpicked selection of trending products with verified ratings and customer reviews. Discover items trusted by thousands of shoppers." gridVariant="three-columns-all-equal-width" textboxLayout="default" animationType="slide-up" - useInvertedBackground={true} - tag="Best Sellers" - tagIcon={Star} + useInvertedBackground={false} + tag="Trending Now" + tagIcon={TrendingUp} /> @@ -98,17 +100,17 @@ export default function LandingPage() { @@ -136,9 +138,9 @@ export default function LandingPage() {
@@ -194,34 +196,35 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "Electronics", href: "#" }, - { label: "Fashion", href: "#" }, - { label: "Home & Garden", href: "#" }, - { label: "Sports", href: "#" }, - { label: "Beauty", href: "#" } + { label: "Electronics", href: "/products" }, + { label: "Fashion", href: "/products" }, + { label: "Home & Garden", href: "/products" }, + { label: "Sports", href: "/products" }, + { label: "Beauty", href: "/products" } ] }, { - title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Careers", href: "#" }, - { label: "Blog", href: "#" }, - { label: "Press", href: "#" } + title: "Account", items: [ + { label: "My Orders", href: "/" }, + { label: "Wishlist", href: "/" }, + { label: "Settings", href: "/" }, + { label: "Saved Items", href: "/" } ] }, { title: "Support", items: [ { label: "Contact Us", href: "#contact" }, { label: "Help Center", href: "#faq" }, - { label: "Track Order", href: "#" }, - { label: "Returns", href: "#" } + { label: "Track Order", href: "/" }, + { label: "Returns", href: "/" } ] }, { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" } + title: "Company", items: [ + { label: "About Us", href: "/" }, + { label: "Blog", href: "/" }, + { label: "Careers", href: "/" }, + { label: "Press", href: "/" } ] } ]}