Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 44eb611866 | |||
| 12bb171d39 | |||
| 0229b2c0da | |||
| af35d6b0c5 |
@@ -2,10 +2,10 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
@@ -55,13 +55,17 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<SplitAbout
|
||||||
useInvertedBackground={false}
|
title="Rooted in Nature"
|
||||||
heading={[
|
description="We believe beauty is an extension of nature. Every formula we create respects the earth and elevates your daily ritual."
|
||||||
{ type: "text", content: "Rooted in Nature" },
|
bulletPoints={[
|
||||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/natural-cream-oil_23-2148532773.jpg", alt: "About TVISHI" },
|
{ title: "Clean Ingredients", description: "Only pure, ethically sourced botanicals in our formulas." },
|
||||||
{ type: "text", content: "We believe beauty is an extension of nature. Every formula we create respects the earth and elevates your daily ritual." }
|
{ 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>
|
</div>
|
||||||
|
|
||||||
@@ -99,25 +103,28 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
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" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
text="Join our journey. Sign up for seasonal ritual tips and exclusive previews."
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterSimple
|
||||||
logoText="TVISHI"
|
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "Shop", items: [{ label: "All Products", href: "#products" }, { label: "Ritual Kits", href: "#" }] },
|
{ title: "Shop", items: [{ label: "All Products", href: "#products" }, { label: "Ritual Kits" }] },
|
||||||
{ title: "Brand", items: [{ label: "Our Story", href: "#about" }, { label: "Ingredients", href: "#" }] },
|
{ title: "Brand", items: [{ label: "Our Story", href: "#about" }, { label: "Ingredients" }] },
|
||||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
|
{ title: "Legal", items: [{ label: "Privacy" }, { label: "Terms" }] }
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 TVISHI | Nature Refined"
|
bottomLeftText="© 2025 TVISHI"
|
||||||
|
bottomRightText="Nature Refined"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user