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,13 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FooterBase from '@/components/sections/footer/FooterBase';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function AboutPage() {
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>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
@@ -18,20 +19,24 @@ export default function AboutPage() {
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="SMILETABS"
/>
<MediaAbout
</div>
<div id="about" data-section="about">
<TextSplitAbout
title="Our Mission"
description="We are dedicated to eliminating plastic waste from daily hygiene routines through sustainable innovation."
description={["We are dedicated to eliminating plastic waste from daily hygiene routines through sustainable innovation."]}
useInvertedBackground={false}
/>
<FooterBase
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">
<FooterLogoEmphasis
logoText="SMILETABS"
columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -3,13 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ContactPage() {
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>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
@@ -18,20 +19,24 @@ export default function ContactPage() {
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="SMILETABS"
/>
<ContactCenter
tag="Get in Touch"
title="We're Here to Help"
description="Reach out to us for any inquiries or support."
</div>
<div id="contact" data-section="contact">
<ContactText
text="We're Here to Help"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
<FooterBase
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">
<FooterLogoEmphasis
logoText="SMILETABS"
columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -3,13 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBase from '@/components/sections/footer/FooterBase';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function FaqPage() {
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>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
@@ -18,25 +19,29 @@ export default function FaqPage() {
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="SMILETABS"
/>
<FaqDouble
title="Frequently Asked Questions"
description="Have questions? We've got answers."
textboxLayout="default"
</div>
<div id="faq" data-section="faq">
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideDescription="Have questions? We've got answers."
faqsAnimation="slide-up"
useInvertedBackground={false}
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" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="SMILETABS"
columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -4,12 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
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() {
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>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
@@ -18,25 +19,30 @@ export default function PricingPage() {
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="SMILETABS"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
title="Choose Your Plan"
description="Affordable, sustainable, and simple subscriptions."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{ id: "basic", name: "Basic", price: "Rs 2000", buttons: [{ text: "Select" }], features: ["1 Month Supply", "Plastic Free"] },
{ id: "pro", name: "Pro", price: "Rs 5000", buttons: [{ text: "Select" }], features: ["3 Month Supply", "Priority Shipping", "Eco-Friendly Bonus"] },
]}
/>
<FooterBase
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">
<FooterLogoEmphasis
logoText="SMILETABS"
columns={[
{ items: [{ label: "Shop", href: "/shop" }] },
{ items: [{ label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);