Merge version_2 into main #4

Merged
bender merged 4 commits from version_2 into main 2026-05-09 15:43:24 +00:00
4 changed files with 130 additions and 109 deletions

View File

@@ -3,35 +3,40 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import MediaAbout from '@/components/sections/about/MediaAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function AboutPage() { export default function AboutPage() {
return ( return (
<ThemeProvider> <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root> <ReactLenis root>
<NavbarStyleApple <div id="nav" data-section="nav">
navItems={[ <NavbarStyleApple
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "/about" }, { name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" }, { name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" }, { name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }, { name: "FAQ", id: "/faq" },
]} { name: "Contact", id: "/contact" },
brandName="SMILETABS" ]}
/> />
<MediaAbout </div>
title="Our Mission" <div id="about" data-section="about">
description="We are dedicated to eliminating plastic waste from daily hygiene routines through sustainable innovation." <TextSplitAbout
useInvertedBackground={false} title="Our Mission"
/> description={["We are dedicated to eliminating plastic waste from daily hygiene routines through sustainable innovation."]}
<FooterBase useInvertedBackground={false}
columns={[ />
{ title: "Shop", items: [{ label: "All Products", href: "/shop" }] }, </div>
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] }, <div id="footer" data-section="footer">
]} <FooterLogoEmphasis
logoText="SMILETABS" logoText="SMILETABS"
/> columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -3,35 +3,40 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ContactPage() { export default function ContactPage() {
return ( return (
<ThemeProvider> <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root> <ReactLenis root>
<NavbarStyleApple <div id="nav" data-section="nav">
navItems={[ <NavbarStyleApple
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "/about" }, { name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" }, { name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" }, { name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }, { name: "FAQ", id: "/faq" },
]} { name: "Contact", id: "/contact" },
brandName="SMILETABS" ]}
/> />
<ContactCenter </div>
tag="Get in Touch" <div id="contact" data-section="contact">
title="We're Here to Help" <ContactText
description="Reach out to us for any inquiries or support." text="We're Here to Help"
/> background={{ variant: "plain" }}
<FooterBase useInvertedBackground={false}
columns={[ />
{ title: "Shop", items: [{ label: "All Products", href: "/shop" }] }, </div>
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] }, <div id="footer" data-section="footer">
]} <FooterLogoEmphasis
logoText="SMILETABS" logoText="SMILETABS"
/> columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -3,40 +3,45 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function FaqPage() { export default function FaqPage() {
return ( return (
<ThemeProvider> <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root> <ReactLenis root>
<NavbarStyleApple <div id="nav" data-section="nav">
navItems={[ <NavbarStyleApple
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "/about" }, { name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" }, { name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" }, { name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }, { name: "FAQ", id: "/faq" },
]} { name: "Contact", id: "/contact" },
brandName="SMILETABS" ]}
/> />
<FaqDouble </div>
title="Frequently Asked Questions" <div id="faq" data-section="faq">
description="Have questions? We've got answers." <FaqSplitText
textboxLayout="default" sideTitle="Frequently Asked Questions"
faqsAnimation="slide-up" sideDescription="Have questions? We've got answers."
faqs={[ faqsAnimation="slide-up"
{ id: "1", title: "How do I use these tabs?", content: "Simply chew and brush as usual!" }, useInvertedBackground={false}
{ id: "2", title: "Are they safe?", content: "Yes, they are dentist-formulated and natural." }, faqs={[
]} { id: "1", title: "How do I use these tabs?", content: "Simply chew and brush as usual!" },
/> { id: "2", title: "Are they safe?", content: "Yes, they are dentist-formulated and natural." },
<FooterBase ]}
columns={[ />
{ title: "Shop", items: [{ label: "All Products", href: "/shop" }] }, </div>
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] }, <div id="footer" data-section="footer">
]} <FooterLogoEmphasis
logoText="SMILETABS" logoText="SMILETABS"
/> columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );

View File

@@ -4,39 +4,45 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function PricingPage() { export default function PricingPage() {
return ( return (
<ThemeProvider> <ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root> <ReactLenis root>
<NavbarStyleApple <div id="nav" data-section="nav">
navItems={[ <NavbarStyleApple
{ name: "Home", id: "/" }, navItems={[
{ name: "About", id: "/about" }, { name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" }, { name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" }, { name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }, { name: "FAQ", id: "/faq" },
]} { name: "Contact", id: "/contact" },
brandName="SMILETABS" ]}
/> />
<PricingCardThree </div>
title="Choose Your Plan" <div id="pricing" data-section="pricing">
description="Affordable, sustainable, and simple subscriptions." <PricingCardThree
textboxLayout="default" title="Choose Your Plan"
animationType="slide-up" description="Affordable, sustainable, and simple subscriptions."
plans={[ textboxLayout="default"
{ id: "basic", name: "Basic", price: "Rs 2000", buttons: [{ text: "Select" }], features: ["1 Month Supply", "Plastic Free"] }, animationType="slide-up"
{ id: "pro", name: "Pro", price: "Rs 5000", buttons: [{ text: "Select" }], features: ["3 Month Supply", "Priority Shipping", "Eco-Friendly Bonus"] }, useInvertedBackground={false}
]} plans={[
/> { id: "basic", name: "Basic", price: "Rs 2000", buttons: [{ text: "Select" }], features: ["1 Month Supply", "Plastic Free"] },
<FooterBase { id: "pro", name: "Pro", price: "Rs 5000", buttons: [{ text: "Select" }], features: ["3 Month Supply", "Priority Shipping", "Eco-Friendly Bonus"] },
columns={[ ]}
{ title: "Shop", items: [{ label: "All Products", href: "/shop" }] }, />
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] }, </div>
]} <div id="footer" data-section="footer">
logoText="SMILETABS" <FooterLogoEmphasis
/> logoText="SMILETABS"
columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );