Switch to version 2: remove src/app/about/page.tsx

This commit is contained in:
2026-04-14 23:35:32 +00:00
parent 0f426b912f
commit 67bd5a93a6

View File

@@ -1,53 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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
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: "Dashboard", id: "/dashboard" },
{ name: "Contact", id: "/contact" }
]}
brandName="Swift Haul"
/>
</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" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ThemeProvider>
);
}