Update src/app/shop/page.tsx
This commit is contained in:
@@ -25,22 +25,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NexPet"
|
||||
/>
|
||||
@@ -48,64 +36,23 @@ export default function LandingPage() {
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "NexPet",
|
||||
name: "Rainbow Harness",
|
||||
price: "$24.99",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-blonde-female-dressed-old-fashioned-jacket-holds-red-badger-dog_613910-15906.jpg",
|
||||
id: "1", brand: "NexPet", name: "Rainbow Harness", price: "$24.99", rating: 5,
|
||||
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/stylish-blonde-female-dressed-old-fashioned-jacket-holds-red-badger-dog_613910-15906.jpg"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "NexPet",
|
||||
name: "Auto Feeder",
|
||||
price: "$49.99",
|
||||
rating: 4,
|
||||
reviewCount: "89",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-couch-with-cat_23-2149735252.jpg",
|
||||
id: "2", brand: "NexPet", name: "Auto Feeder", price: "$49.99", rating: 4,
|
||||
reviewCount: "89", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-couch-with-cat_23-2149735252.jpg"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "NexPet",
|
||||
name: "Natural Shampoo",
|
||||
price: "$16.99",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/influencer-their-pet-creating-content-online-spaces-social-media_23-2151420212.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "NexPet",
|
||||
name: "Grooming Glove",
|
||||
price: "$11.99",
|
||||
rating: 4,
|
||||
reviewCount: "78",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-woman-stylish-headband-wearing-beautiful-earrings_343596-816.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
brand: "NexPet",
|
||||
name: "Squeaky Toy",
|
||||
price: "$8.99",
|
||||
rating: 5,
|
||||
reviewCount: "32",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-doing-yoga-accompanied-by-her-pet_23-2150167023.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
brand: "NexPet",
|
||||
name: "Slow Feeder",
|
||||
price: "$13.99",
|
||||
rating: 4,
|
||||
reviewCount: "56",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-her-pet-french-bulldog-sitting-bench-park_1303-32201.jpg",
|
||||
},
|
||||
id: "3", brand: "NexPet", name: "Natural Shampoo", price: "$16.99", rating: 5,
|
||||
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/influencer-their-pet-creating-content-online-spaces-social-media_23-2151420212.jpg"
|
||||
}
|
||||
]}
|
||||
title="Our Shop"
|
||||
description="Browse our curated collection of premium pet essentials."
|
||||
@@ -120,34 +67,9 @@ export default function LandingPage() {
|
||||
title="Shop Milestones"
|
||||
description="We are proud of our community growth and impact."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10k+",
|
||||
title: "Happy Pets",
|
||||
items: [
|
||||
"Dogs",
|
||||
"Cats",
|
||||
"Others",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "99%",
|
||||
title: "Satisfaction",
|
||||
items: [
|
||||
"Reviews",
|
||||
"Support",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "24h",
|
||||
title: "Avg Delivery",
|
||||
items: [
|
||||
"Speed",
|
||||
"Trust",
|
||||
],
|
||||
},
|
||||
{ id: "m1", value: "10k+", title: "Happy Pets", items: ["Dogs", "Cats", "Others"] },
|
||||
{ id: "m2", value: "99%", title: "Satisfaction", items: ["Reviews", "Support"] },
|
||||
{ id: "m3", value: "24h", title: "Avg Delivery", items: ["Speed", "Trust"] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -155,14 +77,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="NexPet"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user