Merge version_1 into main #2
@@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function CollectionPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -22,161 +22,64 @@ export default function LandingPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Collection",
|
||||
id: "/collection",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="NISHA"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Collection", id: "/collection" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="NISHA"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Black Tee",
|
||||
price: "$45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/set-quail-eggs-near-feathers-vase_23-2148073841.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "White Shirt",
|
||||
price: "$65",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-2741.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Denim Jacket",
|
||||
price: "$120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157456.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Cotton Pants",
|
||||
price: "$85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-brunette-woman-girl-model-with-nude-makeup-wearing-summer-hipster-biker-leather-jacket-clothes-sunglasses-posing-near-wall_158538-8943.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Silk Scarf",
|
||||
price: "$55",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-brunette-woman-girl-model-with-nude-makeup-wearing-summer-hipster-biker-leather-jacket-clothes-sunglasses-posing-near-wall-showing-her-tongue_158538-8948.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Leather Belt",
|
||||
price: "$40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-elegant-businesswoman-putting-suit_23-2148788810.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Collection"
|
||||
description="Explore our curated selection of high-end essentials."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Black Tee", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/set-quail-eggs-near-feathers-vase_23-2148073841.jpg" },
|
||||
{ id: "p2", name: "White Shirt", price: "$65", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-2741.jpg" },
|
||||
{ id: "p3", name: "Denim Jacket", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-arrangement-spanish-food_23-2149157456.jpg" },
|
||||
{ id: "p4", name: "Cotton Pants", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-brunette-woman-girl-model-with-nude-makeup-wearing-summer-hipster-biker-leather-jacket-clothes-sunglasses-posing-near-wall_158538-8943.jpg" },
|
||||
{ id: "p5", name: "Silk Scarf", price: "$55", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-brunette-woman-girl-model-with-nude-makeup-wearing-summer-hipster-biker-leather-jacket-clothes-sunglasses-posing-near-wall-showing-her-tongue_158538-8948.jpg" },
|
||||
{ id: "p6", name: "Leather Belt", price: "$40", imageSrc: "http://img.b2bpic.net/free-photo/front-view-elegant-businesswoman-putting-suit_23-2148788810.jpg" },
|
||||
]}
|
||||
title="Our Collection"
|
||||
description="Explore our curated selection of high-end essentials."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah",
|
||||
handle: "@sarah",
|
||||
testimonial: "Best quality ever.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rebel-model-posing-studio_23-2148376748.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Mark",
|
||||
handle: "@mark",
|
||||
testimonial: "Classic designs.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-posing_1303-3724.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Elena",
|
||||
handle: "@elena",
|
||||
testimonial: "Love these clothes.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-lady-stylish-outfit-looks-with-proud-her-clothing-samples_197531-24018.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Tom",
|
||||
handle: "@tom",
|
||||
testimonial: "Worth every cent.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-elegant-woman-holding-shopping-bags_23-2148624958.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Lily",
|
||||
handle: "@lily",
|
||||
testimonial: "Incredible fits.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg",
|
||||
},
|
||||
]}
|
||||
showRating={true}
|
||||
title="What They Say"
|
||||
description="Our community values quality and style."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah", handle: "@sarah", testimonial: "Best quality ever.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/rebel-model-posing-studio_23-2148376748.jpg" },
|
||||
{ id: "t2", name: "Mark", handle: "@mark", testimonial: "Classic designs.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-posing_1303-3724.jpg" },
|
||||
{ id: "t3", name: "Elena", handle: "@elena", testimonial: "Love these clothes.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-lady-stylish-outfit-looks-with-proud-her-clothing-samples_197531-24018.jpg" },
|
||||
{ id: "t4", name: "Tom", handle: "@tom", testimonial: "Worth every cent.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-elegant-woman-holding-shopping-bags_23-2148624958.jpg" },
|
||||
{ id: "t5", name: "Lily", handle: "@lily", testimonial: "Incredible fits.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg" },
|
||||
]}
|
||||
title="What They Say"
|
||||
description="Our community values quality and style."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{
|
||||
label: "All Products",
|
||||
href: "/collection",
|
||||
},
|
||||
{
|
||||
label: "New Arrivals",
|
||||
href: "/collection",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Help",
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 NISHA. All rights reserved."
|
||||
bottomRightText="Built with love."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Shop", items: [{ label: "All Products", href: "/collection" }, { label: "New Arrivals", href: "/collection" }] },
|
||||
{ title: "Help", items: [{ label: "Contact Us", href: "/contact" }, { label: "Privacy Policy", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 NISHA. All rights reserved."
|
||||
bottomRightText="Built with love."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user