Update src/app/page.tsx

This commit is contained in:
2026-03-10 23:56:58 +00:00
parent 248c9e60b1
commit 960816d5dc

View File

@@ -7,9 +7,9 @@ import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwent
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Zap, Shield } from 'lucide-react';
import Image from 'next/image';
export default function HomePage() {
const navItems = [
@@ -59,6 +59,16 @@ export default function HomePage() {
/>
</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="Why Revolution Digital Exists"
@@ -172,37 +182,6 @@ export default function HomePage() {
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>
);
}