Update src/app/shop/page.tsx

This commit is contained in:
2026-05-09 08:33:43 +00:00
parent 67d3a9e198
commit 9dd0e75c19

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function ShopPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Affiliate",
id: "/affiliate",
},
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Affiliate", id: "/affiliate" },
]}
brandName="Noor Arte"
button={{ text: "Contact", href: "/affiliate" }}
/>
</div>
@@ -53,42 +42,12 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "a1",
name: "Persian Flower Ring",
price: "$85",
imageSrc: "http://img.b2bpic.net/free-photo/emerald-rings-hands_23-2151934147.jpg",
},
{
id: "a2",
name: "Modern Ziggurat Pendant",
price: "$135",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-holy-book-with-kippah-hamsa_23-2148629965.jpg",
},
{
id: "a3",
name: "Poetry Script Cuff",
price: "$190",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-modern-man-accessories_1328-2270.jpg",
},
{
id: "a4",
name: "Symbolism Drop Earrings",
price: "$75",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-christmas-globes-with-ornaments_23-2148721334.jpg",
},
{
id: "a5",
name: "Royal Enamel Belt",
price: "$295",
imageSrc: "http://img.b2bpic.net/free-vector/coloured-mandala-design_1175-66.jpg",
},
{
id: "a6",
name: "Artisanal Silver Links",
price: "$160",
imageSrc: "http://img.b2bpic.net/free-photo/wedding-glass-precious-gold-luxury-golden_1400-35.jpg",
},
{ id: "a1", name: "Persian Flower Ring", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/emerald-rings-hands_23-2151934147.jpg" },
{ id: "a2", name: "Modern Ziggurat Pendant", price: "$135", imageSrc: "http://img.b2bpic.net/free-photo/front-view-holy-book-with-kippah-hamsa_23-2148629965.jpg" },
{ id: "a3", name: "Poetry Script Cuff", price: "$190", imageSrc: "http://img.b2bpic.net/free-photo/close-up-modern-man-accessories_1328-2270.jpg" },
{ id: "a4", name: "Symbolism Drop Earrings", price: "$75", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-christmas-globes-with-ornaments_23-2148721334.jpg" },
{ id: "a5", name: "Royal Enamel Belt", price: "$295", imageSrc: "http://img.b2bpic.net/free-vector/coloured-mandala-design_1175-66.jpg" },
{ id: "a6", name: "Artisanal Silver Links", price: "$160", imageSrc: "http://img.b2bpic.net/free-photo/wedding-glass-precious-gold-luxury-golden_1400-35.jpg" },
]}
title="Jewelry Catalog"
description="Explore our full range of handcrafted silver and enamel treasures."
@@ -101,51 +60,15 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Featured In"
description="Trusted by leading fashion curators."
names={[
"Vogue Artisan",
"Persian Style Digest",
"Global Heritage Weekly",
"Modern Jeweller Daily",
"Cultural Trends",
]}
names={["Vogue Artisan", "Persian Style Digest", "Global Heritage Weekly", "Modern Jeweller Daily", "Cultural Trends"]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Shop All",
href: "/shop",
},
{
label: "About",
href: "/about",
},
{
label: "Affiliate",
href: "/affiliate",
},
],
},
{
items: [
{
label: "Terms",
href: "/terms",
},
{
label: "Privacy",
href: "/privacy",
},
{
label: "Shipping",
href: "/shipping",
},
],
},
{ items: [{ label: "Shop All", href: "/shop" }, { label: "About", href: "/about" }, { label: "Affiliate", href: "/affiliate" }] },
{ items: [{ label: "Terms", href: "/terms" }, { label: "Privacy", href: "/privacy" }, { label: "Shipping", href: "/shipping" }] },
]}
logoText="Noor Arte"
/>