Merge version_2 into main #2
@@ -9,7 +9,7 @@ import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { Building, Scan, Star } from "lucide-react";
|
||||
import { Zap, Target, Award } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -23,7 +23,7 @@ export default function LandingPage() {
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
@@ -31,9 +31,9 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Metrics", id: "metrics" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Impact", id: "metrics" },
|
||||
{ name: "Stories", id: "testimonials" },
|
||||
{ name: "Early Access", id: "contact" }
|
||||
]}
|
||||
brandName="GreenScan"
|
||||
/>
|
||||
@@ -41,37 +41,33 @@ export default function LandingPage() {
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplitDualMedia
|
||||
background={{ variant: "plain" }}
|
||||
title="Empowering Conscious Decisions Through ESG Intelligence"
|
||||
description="Scan every product barcode to instantly access verified ESG green ratings. Experience the transparency of modern green finance in the palm of your hand."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="Elevate Your Impact with ESG Intelligence"
|
||||
description="Discover the true sustainability score behind every product. Simply scan a barcode to access high-precision ESG ratings and make informed choices for a greener lifestyle."
|
||||
tag="Luxury ESG Scanner"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-hand-holding-device_23-2149340927.jpg", imageAlt: "smartphone barcode scanning app interface"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-covid19-international-vaccination-certificate-with-qr-code-phone-pink-background_1268-19588.jpg", imageAlt: "mobile barcode scanner app closeup"
|
||||
}
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/luxury-smartphone-interface-display_23-2149340927.jpg", imageAlt: "Elegant barcode scanner UI" },
|
||||
{ imageSrc: "https://img.b2bpic.net/free-photo/woman-scanning-organic-product-supermarket_1268-19588.jpg", imageAlt: "Conscious consumer scanning product" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
ratingText="Verified by 50,000+ conscious users"
|
||||
ratingText="Trusted by 50,000+ conscious consumers"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyOne
|
||||
useInvertedBackground={true}
|
||||
title="Advanced ESG Data Science"
|
||||
description="Our scanner doesn't just read barcodes; it queries global sustainability databases to provide real-time ESG metrics you can actually trust."
|
||||
title="Intelligence for Sustainable Living"
|
||||
description="Our sophisticated algorithm decodes complex corporate sustainability data into a clear, actionable score. Scan, evaluate, and choose better for the planet every day."
|
||||
accordionItems={[
|
||||
{ id: "1", title: "Real-time ESG Analysis", content: "Instant lookup of carbon footprints and social labor scores." },
|
||||
{ id: "2", title: "Transparency Guaranteed", content: "Verified supply chain data from independent global sources." },
|
||||
{ id: "3", title: "Personalized Impact Scoring", content: "Understand your purchasing impact with our unique 100-point scale." }
|
||||
{ id: "1", title: "Instant ESG Scoring", content: "Get a definitive green rating out of 100 for any item you scan." },
|
||||
{ id: "2", title: "Verified Supply Chain Data", content: "Access transparent data on environmental and social impact metrics." },
|
||||
{ id: "3", title: "Daily Sustainable Habits", content: "Transform your shopping routine into a force for positive global change." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxurious-boardroom-space-within-multinational-company-used-meetings_482257-124520.jpg"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/abstract-green-sustainability-data-visualization_482257-124520.jpg"
|
||||
mediaAnimation="opacity"
|
||||
imageAlt="esg metrics analytical dashboard screen"
|
||||
imageAlt="Beautifully visualized green impact data"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -81,12 +77,12 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", icon: Scan, title: "Products Scanned", value: "1.2M+" },
|
||||
{ id: "m2", icon: Building, title: "Carbon Reduced", value: "50K tons" },
|
||||
{ id: "m3", icon: Star, title: "Average Score", value: "84/100" }
|
||||
{ id: "m1", icon: Zap, title: "Verified Scans", value: "1.2M+" },
|
||||
{ id: "m2", icon: Target, title: "Green Impact Score", value: "92/100" },
|
||||
{ id: "m3", icon: Award, title: "Conscious Community", value: "5-Star" }
|
||||
]}
|
||||
title="Sustainability at Scale"
|
||||
description="Quantifiable impact data for every product you scan."
|
||||
title="Measured Impact, Daily"
|
||||
description="Real-time insights empowering you to lead the transition to a sustainable future."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -94,14 +90,12 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Elena Vance", imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-woman-smiling-confident-holding-take-away-paper-bag-street_839833-1756.jpg" },
|
||||
{ id: "2", name: "Marcus Thorne", imageSrc: "http://img.b2bpic.net/free-photo/young-person-intership_23-2149315641.jpg" },
|
||||
{ id: "3", name: "Sita Ray", imageSrc: "http://img.b2bpic.net/free-photo/female-gardner-plant-house-with-plants-flowers_1303-26428.jpg" },
|
||||
{ id: "4", name: "Julian Pike", imageSrc: "http://img.b2bpic.net/free-photo/shopping-girl-phone_23-2148023383.jpg" },
|
||||
{ id: "5", name: "Claire Dupont", imageSrc: "http://img.b2bpic.net/free-photo/paying-purchases_1098-19435.jpg" }
|
||||
{ id: "1", name: "Sophia Thorne", imageSrc: "https://img.b2bpic.net/free-photo/woman-smiling-holding-shopping-bag_839833-1756.jpg" },
|
||||
{ id: "2", name: "Liam Henderson", imageSrc: "https://img.b2bpic.net/free-photo/person-looking-phone-park_23-2149315641.jpg" },
|
||||
{ id: "3", name: "Chloe Dubois", imageSrc: "https://img.b2bpic.net/free-photo/botanical-expert-analyzing-plant_1303-26428.jpg" }
|
||||
]}
|
||||
cardTitle="Loved by Conscious Leaders"
|
||||
cardTag="Testimonials"
|
||||
cardTitle="A Greener Choice Everyday"
|
||||
cardTag="Our Community"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -109,10 +103,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Join the Movement"
|
||||
title="Be the First to Experience GreenScan"
|
||||
description="Sign up for early access to our exclusive luxury beta, starting this Fall."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Join the Elite"
|
||||
title="Experience The Future of Sustainable Shopping"
|
||||
description="Request exclusive early access to our luxury ESG scanning platform."
|
||||
buttonText="Secure Early Access"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -126,4 +121,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user