diff --git a/src/app/page.tsx b/src/app/page.tsx index ba481c3..9896c4a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import FaqBase from '@/components/sections/faq/FaqBase'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Award, CheckCircle, Heart, HelpCircle, Sparkles, Star, TrendingUp, Zap } from 'lucide-react'; +import { Award, CheckCircle, Heart, HelpCircle, Sparkles, Star, TrendingUp, Zap, ShoppingCart } from 'lucide-react'; export default function LandingPage() { return ( @@ -32,7 +32,8 @@ export default function LandingPage() { navItems={[ { name: "Shop", id: "products" }, { name: "About", id: "about" }, - { name: "Reviews", id: "testimonials" } + { name: "Reviews", id: "testimonials" }, + { name: "Store", id: "/store" } ]} button={{ text: "Shop Now", href: "#products" }} animateOnLoad={true} @@ -144,7 +145,7 @@ export default function LandingPage() { isFavorited: false } ]} - buttons={[{ text: "View All Products", href: "#" }]} + buttons={[{ text: "View All Products", href: "/store" }]} /> diff --git a/src/app/store/page.tsx b/src/app/store/page.tsx new file mode 100644 index 0000000..0afad03 --- /dev/null +++ b/src/app/store/page.tsx @@ -0,0 +1,96 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { ShoppingCart, Zap } from 'lucide-react'; + +export default function StorePage() { + return ( + + + +
+ +
+ + +
+ ); +}