Add src/app/about/page.tsx

This commit is contained in:
2026-04-14 23:29:08 +00:00
parent 11b7cd9abb
commit 5dbd0ad62a

41
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,41 @@
"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>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Responsible Gaming", id: "/responsible-gaming" },
{ 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>
<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: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}