```jsx import React, { useState } from 'react'; import { CreditCard, Gift, Shield, Clock, Star, CheckCircle, Phone, Mail, MapPin } from 'lucide-react'; const App = () => { const [formData, setFormData] = useState({ name: '', email: '', phone: '', amount: '100' }); const handleInputChange = (e) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e) => { e.preventDefault(); // In a real app, this would send data to a server alert('Thank you for your purchase! Your CPA Gift Card will be processed shortly.'); }; const giftAmounts = [ { value: '50', label: '$50' }, { value: '100', label: '$100' }, { value: '250', label: '$250' }, { value: '500', label: '$500' } ]; const features = [ { icon: , title: "Secure & Trusted", description: "Backed by certified CPA professionals with years of experience" }, { icon: , title: "Instant Delivery", description: "Digital cards delivered immediately via email" }, { icon: , title: "Perfect Gift", description: "Ideal for tax season, business owners, or anyone needing financial guidance" } ]; const testimonials = [ { name: "Sarah Johnson", role: "Small Business Owner", content: "This gift card was perfect for my accountant! She was thrilled and said it's the most thoughtful gift she's received.", rating: 5 }, { name: "Michael Chen", role: "Freelancer", content: "Used it for my own tax preparation and saved hundreds. The CPA was incredibly knowledgeable and professional.", rating: 5 }, { name: "Emily Rodriguez", role: "HR Manager", content: "Bought these as employee appreciation gifts. Everyone loved having access to professional tax help.", rating: 5 } ]; return (
{/* Header */}
{/* Hero Section */}
Perfect Gift for Tax Season

Give the Gift of Professional Tax Help

Surprise your loved ones with a CPA Gift Card – the perfect present for anyone who needs expert tax preparation, financial planning, or accounting services.

CPA Gift Card

Professional Tax Services

${formData.amount}
Valid for: All CPA services
Expires: 12 months
{giftAmounts.map((amount) => ( ))}
{/* Features Section */}

Why Choose CPA Gift Cards?

Give more than just a gift – give peace of mind and professional expertise

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* How It Works */}

How It Works

Simple, fast, and convenient

{[ { step: "1", title: "Choose Amount", description: "Select the perfect gift amount for your recipient" }, { step: "2", title: "Personalize", description: "Add a personal message and recipient details" }, { step: "3", title: "Purchase", description: "Complete your secure purchase instantly" }, { step: "4", title: "Deliver", description: "Gift card is emailed immediately or scheduled for later" } ].map((item, index) => (
{item.step}

{item.title}

{item.description}

))}
{/* Testimonials */}

What Our Customers Say

Trusted by thousands of satisfied customers

{testimonials.map((testimonial, index) => (
{[...Array(testimonial.rating)].map((_, i) => ( ))}

"{testimonial.content}"

{testimonial.name}

{testimonial.role}

))}
{/* CTA Section */}

Ready to Give the Perfect Gift?

Join thousands of satisfied customers who have given the gift of professional tax help

{/* Footer */}
); }; export default App; ```

Comments

Popular posts from this blog