Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-05 21:42:37 +00:00

View File

@@ -3,11 +3,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import FooterCard from '@/components/sections/footer/FooterCard';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function LandingPage() {
export default function StoryPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -22,88 +22,58 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Products",
id: "/products",
},
{
name: "Story",
id: "/story",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="PureShea"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Story", id: "/story" },
{ name: "Contact", id: "/contact" },
]}
brandName="PureShea"
/>
</div>
<div id="metric" data-section="metric">
<MetricCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Impact"
description="Empowering communities through sustainable beauty."
metrics={[
{
id: "m1",
value: "500+",
title: "Artisans Supported",
items: [
"Fair wages",
"Health insurance",
],
},
{
id: "m2",
value: "100%",
title: "Renewable Energy",
items: [
"Solar drying",
"Zero waste",
],
},
]}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Impact"
description="Empowering communities through sustainable beauty."
metrics={[
{
id: "m1", value: "500+", title: "Artisans Supported", items: ["Fair wages", "Health insurance"]
},
{
id: "m2", value: "100%", title: "Renewable Energy", items: ["Solar drying", "Zero waste"]
}
]}
/>
</div>
<div id="blog" data-section="blog">
<BlogCardTwo
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Journal"
description="Stories from the heart of shea sourcing."
blogs={[
{
id: "b1",
title: "The Shea Harvest",
excerpt: "Deep dive into how our nuts are collected.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-herbal-medicine_23-2149291992.jpg?_wi=2",
authorName: "Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/closeup-young-caucasian-browneyed-brunette-with-short-haircut-looks-camera-white-background-modern-lifestyle-concept_197531-31412.jpg",
date: "Jan 12, 2025",
},
]}
/>
</div>
<div id="blog" data-section="blog">
<BlogCardTwo
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Journal"
description="Stories from the heart of shea sourcing."
blogs={[
{
id: "b1", category: "Sourcing", title: "The Shea Harvest", excerpt: "Deep dive into how our nuts are collected.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-with-herbal-medicine_23-2149291992.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-young-caucasian-browneyed-brunette-with-short-haircut-looks-camera-white-background-modern-lifestyle-concept_197531-31412.jpg", date: "Jan 12, 2025"
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="PureShea"
copyrightText="© 2025 PureShea. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="PureShea"
copyrightText="© 2025 PureShea. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}