9 Commits

Author SHA1 Message Date
4fe3075447 Merge version_5 into main
Merge version_5 into main
2025-12-26 10:56:29 +00:00
7f401cddf5 Update src/app/page.tsx 2025-12-26 10:56:24 +00:00
370cc4b2fd Merge version_5 into main
Merge version_5 into main
2025-12-26 10:54:37 +00:00
190f527d84 Update src/app/page.tsx 2025-12-26 10:54:33 +00:00
d19439d0f6 Merge version_4 into main
Merge version_4 into main
2025-12-26 10:49:51 +00:00
0704529d35 Update src/app/page.tsx 2025-12-26 10:49:47 +00:00
4e33e3d831 Merge version_3 into main
Merge version_3 into main
2025-12-26 10:45:58 +00:00
f073845021 Update src/app/page.tsx 2025-12-26 10:45:53 +00:00
0a2eb3a8aa Merge version_2 into main
Merge version_2 into main
2025-12-26 10:41:24 +00:00

View File

@@ -5,11 +5,11 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import CardStack from '@/components/cardStack/CardStack';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSplit from '@/components/sections/footer/FooterSplit'; import FooterSplit from '@/components/sections/footer/FooterSplit';
import { Heart, Leaf, Mail, MapPin, Phone, Sprout, Star } from 'lucide-react'; import { Heart, Leaf, Mail, MapPin, Phone, Sprout, Star, Linkedin } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -28,12 +28,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
brandName="No kinoa" brandName="No kinoa"
navItems={[ links={[
{ name: "About", id: "about" }, { label: "About", href: "about" },
{ name: "Tea Collection", id: "products" }, { label: "Tea Collection", href: "products" },
{ name: "Benefits", id: "features" }, { label: "Benefits", href: "features" },
{ name: "Reviews", id: "testimonials" }, { label: "Reviews", href: "testimonials" },
{ name: "Contact", id: "contact" } { label: "Contact", href: "contact" }
]} ]}
button={{ button={{
text: "Shop Now", text: "Shop Now",
@@ -127,34 +127,29 @@ export default function LandingPage() {
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardSeven <div className="py-24 px-6">
title="Why Choose No kinoa Tea" <div className="mx-auto max-w-7xl">
description="Discover the benefits of premium tea and our commitment to quality" <div className="text-center mb-16">
tag="Benefits" <span className="inline-block px-3 py-1 text-sm bg-accent/20 text-accent rounded-full mb-4">Benefits</span>
features={[ <h2 className="text-4xl font-bold mb-4">Why Choose No kinoa Tea</h2>
{ <p className="text-xl text-foreground/70">Discover the benefits of premium tea and our commitment to quality</p>
id: 1, </div>
title: "100% Organic & Pure", <div className="grid grid-cols-1 md:grid-cols-3 gap-8">
description: "All our teas are sourced from certified organic farms with no additives or artificial ingredients. We believe in natural purity.", <div className="p-6 rounded-lg border border-gray-200 dark:border-gray-700">
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766745310530-7x1rnnq3.jpg" <h3 className="text-lg font-semibold mb-2">100% Organic & Pure</h3>
}, <p className="text-sm text-gray-600 dark:text-gray-300">All our teas are sourced from certified organic farms with no additives or artificial ingredients. We believe in natural purity.</p>
{ </div>
id: 2, <div className="p-6 rounded-lg border border-gray-200 dark:border-gray-700">
title: "Health & Wellness", <h3 className="text-lg font-semibold mb-2">Health & Wellness</h3>
description: "Rich in antioxidants and natural nutrients. Each cup supports your daily wellness routine with powerful health benefits.", <p className="text-sm text-gray-600 dark:text-gray-300">Rich in antioxidants and natural nutrients. Each cup supports your daily wellness routine with powerful health benefits.</p>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766745314626-2ym71jw6.jpg" </div>
}, <div className="p-6 rounded-lg border border-gray-200 dark:border-gray-700">
{ <h3 className="text-lg font-semibold mb-2">Sustainable Sourcing</h3>
id: 3, <p className="text-sm text-gray-600 dark:text-gray-300">We partner with fair-trade farms that prioritize environmental conservation and support local communities.</p>
title: "Sustainable Sourcing", </div>
description: "We partner with fair-trade farms that prioritize environmental conservation and support local communities.", </div>
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766745311535-x8qbbar9.jpg" </div>
} </div>
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
/>
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
@@ -270,7 +265,8 @@ export default function LandingPage() {
contactItems={[ contactItems={[
{ icon: Phone, text: "(555) 123-4567" }, { icon: Phone, text: "(555) 123-4567" },
{ icon: Mail, text: "hello@nokinoa.com" }, { icon: Mail, text: "hello@nokinoa.com" },
{ icon: MapPin, text: "Premium Tea Headquarters" } { icon: MapPin, text: "Premium Tea Headquarters" },
{ icon: Linkedin, text: "LinkedIn Company" }
]} ]}
/> />
</div> </div>