43 lines
1.8 KiB
TypeScript
43 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<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: "/" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Pricing", id: "/pricing" },
|
|
{ name: "FAQ", id: "/faq" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
/>
|
|
</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."]}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</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>
|
|
);
|
|
} |