Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-27 17:04:30 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import SplitAbout from '@/components/sections/about/SplitAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
@@ -55,13 +55,17 @@ export default function LandingPage() {
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Rooted in Nature" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/natural-cream-oil_23-2148532773.jpg", alt: "About TVISHI" },
{ type: "text", content: "We believe beauty is an extension of nature. Every formula we create respects the earth and elevates your daily ritual." }
<SplitAbout
title="Rooted in Nature"
description="We believe beauty is an extension of nature. Every formula we create respects the earth and elevates your daily ritual."
bulletPoints={[
{ title: "Clean Ingredients", description: "Only pure, ethically sourced botanicals in our formulas." },
{ title: "Mindful Craft", description: "Small-batch production to ensure potency and freshness." }
]}
imageSrc="http://img.b2bpic.net/free-photo/natural-cream-oil_23-2148532773.jpg"
imagePosition="right"
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
@@ -99,25 +103,28 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
<ContactCTA
tag="Get in Touch"
title="Start Your Ritual Today"
description="We're here to guide you toward your perfect routine. Send us a message or browse our FAQ."
buttons={[{ text: "Contact Support", href: "mailto:hello@tvishi.com" }]}
background={{ variant: "gradient-bars" }}
text="Join our journey. Sign up for seasonal ritual tips and exclusive previews."
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="TVISHI"
<FooterSimple
columns={[
{ title: "Shop", items: [{ label: "All Products", href: "#products" }, { label: "Ritual Kits", href: "#" }] },
{ title: "Brand", items: [{ label: "Our Story", href: "#about" }, { label: "Ingredients", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
{ title: "Shop", items: [{ label: "All Products", href: "#products" }, { label: "Ritual Kits" }] },
{ title: "Brand", items: [{ label: "Our Story", href: "#about" }, { label: "Ingredients" }] },
{ title: "Legal", items: [{ label: "Privacy" }, { label: "Terms" }] }
]}
copyrightText="© 2025 TVISHI | Nature Refined"
bottomLeftText="© 2025 TVISHI"
bottomRightText="Nature Refined"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}