Update src/app/shop/page.tsx
This commit is contained in:
@@ -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"
|
||||
@@ -22,135 +22,58 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Affiliate",
|
||||
id: "/affiliate",
|
||||
},
|
||||
]}
|
||||
brandName="Noor Arte"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Affiliate", id: "/affiliate" },
|
||||
]}
|
||||
brandName="Noor Arte"
|
||||
button={{ text: "Contact", href: "/affiliate" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="shop-list" data-section="shop-list">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
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",
|
||||
},
|
||||
]}
|
||||
title="Jewelry Catalog"
|
||||
description="Explore our full range of handcrafted silver and enamel treasures."
|
||||
/>
|
||||
</div>
|
||||
<div id="shop-list" data-section="shop-list">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
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" },
|
||||
]}
|
||||
title="Jewelry Catalog"
|
||||
description="Explore our full range of handcrafted silver and enamel treasures."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
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",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
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"]}
|
||||
/>
|
||||
</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",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Noor Arte"
|
||||
/>
|
||||
</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" }] },
|
||||
]}
|
||||
logoText="Noor Arte"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user