Update src/app/pricing/page.tsx

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

View File

@@ -4,8 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Shield, Zap, Crown } from "lucide-react";
import Image from "next/image";
export default function PricingPage() {
return (
@@ -36,6 +36,16 @@ export default function PricingPage() {
/>
</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="pricing" data-section="pricing">
<PricingCardOne
title="The Armory: Choose Your Arsenal"
@@ -79,37 +89,6 @@ export default function PricingPage() {
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>
);
}