Update src/app/about/page.tsx

This commit is contained in:
2026-04-14 23:29:44 +00:00
parent efeefa4733
commit 1421e2aaa5

View File

@@ -1,41 +1,53 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Responsible Gaming", id: "/responsible-gaming" },
{ name: "Contact", id: "#contact" },
{ name: "Dashboard", id: "/dashboard" },
{ name: "Contact", id: "/contact" }
]}
brandName="Swift Haul"
/>
<div style={{ paddingTop: "100px", paddingBottom: "100px" }}>
<SplitAbout
title="About Swift Haul"
description="Learn more about our mission to provide the most reliable trucking services in the industry."
bulletPoints={[]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
</div>
<div id="about" data-section="about">
<SplitAbout
title="About Swift Haul"
description="Learn more about our mission to provide the most reliable trucking services in the industry."
bulletPoints={[]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Swift Haul"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Responsible Gaming", href: "/responsible-gaming" }] },
{ title: "Support", items: [{ label: "Contact", href: "/" }, { label: "Privacy Policy", href: "#" }] },
{ title: "Company", items: [{ label: "About", href: "/about" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }] },
]}
/>
</ReactLenis>
</div>
</ThemeProvider>
);
}
}