Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-11 00:37:53 +00:00
parent 23aed3c9b8
commit 8c1539bddd

View File

@@ -75,19 +75,45 @@ export default function PricingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Revolutionize?"
tagIcon={Zap}
title="Conquer Your Market"
description="Elite tools. Affordable pricing. Unmatched support. Your competitors are falling behind. Join the revolution today."
buttons={[
{ text: "Schedule Your Consultation", href: "/contact" },
{ text: "Back to Home", href: "/" },
]}
background={{ variant: "plain" }}
useInvertedBackground={true}
/>
<div id="contact" data-section="contact" className="py-20 px-6 flex justify-center items-center">
<div className="max-w-2xl w-full">
<div className="bg-card rounded-lg p-8 md:p-12 text-center">
<div className="mb-6">
<h2 className="text-4xl md:text-5xl font-bold text-foreground mb-4">Ready to Get Started?</h2>
<p className="text-lg text-foreground/80 mb-8">
Interested in one of our plans? We'd love to hear from you! Get in touch with us to discuss your project and how we can help transform your digital presence.
</p>
</div>
<div className="space-y-4">
<p className="text-foreground/70 leading-relaxed">
<strong>Email us at:</strong>
</p>
<p className="text-2xl font-bold text-primary-cta break-all">
revolutiondigital2026@gmail.com
</p>
<div className="mt-8 pt-8 border-t border-accent/20">
<p className="text-sm text-foreground/60 leading-relaxed">
Please include the following details in your email:
</p>
<ul className="text-left mt-4 space-y-2 text-foreground/70">
<li>• <strong>Your Business Name</strong></li>
<li>• <strong>What you want in your website</strong> (features, pages, functionality)</li>
<li>• <strong>How we can contact you</strong> (phone number and preferred time)</li>
<li>• <strong>Your timeline</strong> (when you'd like to launch)</li>
<li> <strong>Your budget range</strong> (which plan interests you)</li>
</ul>
</div>
<div className="mt-8 pt-8 border-t border-accent/20">
<p className="text-sm text-foreground/60">
We'll review your inquiry and get back to you within 24 hours with a personalized response and next steps.
</p>
</div>
</div>
</div>
</div>
</div>
</ThemeProvider>
);