imeshuek commited on
Commit
ebf21ff
·
verified ·
1 Parent(s): 34af9c2

Upload src/components/CTASection.tsx

Browse files
Files changed (1) hide show
  1. src/components/CTASection.tsx +18 -0
src/components/CTASection.tsx ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function CTASection() {
2
+ return (
3
+ <section className="py-20 bg-charcoal-700 relative overflow-hidden">
4
+ <div className="wedding-section relative text-center">
5
+ <h2 className="font-heading text-3xl md:text-4xl lg:text-5xl font-semibold text-ivory-50 mb-4">
6
+ Ready to say &ldquo;I do&rdquo;?
7
+ </h2>
8
+ <p className="text-charcoal-300 text-lg max-w-xl mx-auto mb-8 leading-relaxed">
9
+ Join thousands of couples who planned their perfect wedding with Evermore. Start free today.
10
+ </p>
11
+ <div className="flex flex-col sm:flex-row items-center justify-center gap-4">
12
+ <a href="/search" className="wedding-btn-gold text-base px-8 py-4">Get Started Free</a>
13
+ <a href="#" className="text-sm text-gold-300 hover:text-gold-200 transition-colors font-medium">Are you a vendor? List your business →</a>
14
+ </div>
15
+ </div>
16
+ </section>
17
+ )
18
+ }