diff --git a/src/app/page.tsx b/src/app/page.tsx index 2037f4f..c7624de 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,13 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; import { Shield, Sparkles, Zap } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [search, setSearch] = useState(""); + return ( +
+ ({ + id: `p-${i}`, + name: `Species Item ${i + 1}`, + price: "$10.00", rating: 4.5, + imageSrc: "http://img.b2bpic.net/free-photo/3d-render-globe-abstract_1048-13810.jpg" + }))} + /> +
+
); -} \ No newline at end of file +}