Compare commits
13 Commits
version_1
...
a4b48ce257
| Author | SHA1 | Date | |
|---|---|---|---|
| a4b48ce257 | |||
| aa00ab51e9 | |||
| 4fe3075447 | |||
| 7f401cddf5 | |||
| 370cc4b2fd | |||
| 190f527d84 | |||
| d19439d0f6 | |||
| 0704529d35 | |||
| 4e33e3d831 | |||
| f073845021 | |||
| 0a2eb3a8aa | |||
| a72a2af0de | |||
| a0cd6a31d9 |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #f8faff;;
|
||||
--card: #f0f4ff;;
|
||||
--foreground: #1a1a2e;;
|
||||
--primary-cta: #3b82f6;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #d5c6ff;;
|
||||
--background-accent: #b394fa;;
|
||||
--background: #ffffff;
|
||||
--card: #fcfcfc;
|
||||
--foreground: #00120ae6;
|
||||
--primary-cta: #15ad59;
|
||||
--secondary-cta: #ffffff;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
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, Award, Zap, Shield } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,12 +28,12 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="No kinoa"
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Tea Collection", id: "products" },
|
||||
{ name: "Benefits", id: "features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
links={[
|
||||
{ label: "About", href: "about" },
|
||||
{ label: "Tea Collection", href: "products" },
|
||||
{ label: "Benefits", href: "features" },
|
||||
{ label: "Reviews", href: "testimonials" },
|
||||
{ label: "Contact", href: "contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Shop Now",
|
||||
@@ -127,33 +127,30 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSeven
|
||||
<CardStack
|
||||
title="Why Choose No kinoa Tea"
|
||||
description="Discover the benefits of premium tea and our commitment to quality"
|
||||
tag="Benefits"
|
||||
features={[
|
||||
cards={[
|
||||
{
|
||||
id: 1,
|
||||
id: "1",
|
||||
title: "100% Organic & Pure",
|
||||
description: "All our teas are sourced from certified organic farms with no additives or artificial ingredients. We believe in natural purity.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766745310530-7x1rnnq3.jpg"
|
||||
icon: Leaf
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
id: "2",
|
||||
title: "Health & Wellness",
|
||||
description: "Rich in antioxidants and natural nutrients. Each cup supports your daily wellness routine with powerful health benefits.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766745314626-2ym71jw6.jpg"
|
||||
icon: Heart
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
id: "3",
|
||||
title: "Sustainable Sourcing",
|
||||
description: "We partner with fair-trade farms that prioritize environmental conservation and support local communities.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766745311535-x8qbbar9.jpg"
|
||||
icon: Shield
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -270,7 +267,8 @@ export default function LandingPage() {
|
||||
contactItems={[
|
||||
{ icon: Phone, text: "(555) 123-4567" },
|
||||
{ icon: Mail, text: "hello@nokinoa.com" },
|
||||
{ icon: MapPin, text: "Premium Tea Headquarters" }
|
||||
{ icon: MapPin, text: "Premium Tea Headquarters" },
|
||||
{ icon: Linkedin, text: "LinkedIn Company" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user