Update src/app/about/page.tsx

This commit is contained in:
2026-03-10 23:56:57 +00:00
parent 8a5bcce676
commit 9b8032de08

View File

@@ -4,9 +4,9 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Zap } from 'lucide-react';
import Image from 'next/image';
export default function AboutPage() {
const navItems = [
@@ -39,6 +39,16 @@ export default function AboutPage() {
/>
</div>
<div id="logo-section" data-section="logo-section" className="py-20 flex justify-center items-center">
<Image
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am6HmwYYicG9DTaOhl5cOOUSDv/uploaded-1773186953850-6z15t2ev.png"
alt="Revolution Digital Logo"
width={200}
height={100}
className="object-contain"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="Our Mission: Democratize Elite Technology"
@@ -90,37 +100,6 @@ export default function AboutPage() {
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Product", items: [
{ label: "The Soldier", href: "/pricing" },
{ label: "The Militia", href: "/pricing" },
{ label: "The Army", href: "/pricing" },
{ label: "Features", href: "/#features" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Mission", href: "/about" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Sitemap", href: "#" }
]
}
]}
copyrightText="© 2026 Revolution Digital. The Modern Equalizer. All rights reserved."
/>
</div>
</ThemeProvider>
);
}