import React, { useState } from 'react'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'; import { Badge } from '@/components/ui/badge'; import { Input } from '@/components/ui/input'; import { Textarea } from '@/components/ui/textarea'; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from '@/components/ui/accordion'; import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; import { Home, Hammer, Paintbrush, Wrench, CheckCircle2, Star, Users, Award, TrendingUp, Phone, Mail, MapPin, Facebook, Twitter, Instagram, Linkedin } from 'lucide-react'; const HomeRenovationWebsite = () => { const [formData, setFormData] = useState({ name: '', email: '', phone: '', message: '' }); const features = [ { icon: , title: "Expert Craftsmanship", description: "Our skilled team brings decades of experience to every project, ensuring quality that lasts." }, { icon: , title: "Custom Design", description: "Tailored solutions that match your vision and enhance your property's unique character." }, { icon: , title: "Full-Service Solutions", description: "From planning to completion, we handle every aspect of your renovation project." }, { icon: , title: "Quality Guarantee", description: "We stand behind our work with comprehensive warranties and ongoing support." }, { icon: , title: "Increase Property Value", description: "Strategic renovations that boost your property's market value and appeal." }, { icon: , title: "Dedicated Support", description: "A personal project manager guides you through every step of the process." } ]; const testimonials = [ { name: "Sarah Mitchell", role: "Cafe Owner", image: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&h=150&fit=crop", content: "The renovation transformed our cafe completely. Sales increased by 40% in the first quarter after reopening. The team was professional and finished on time.", rating: 5 }, { name: "James Rodriguez", role: "Restaurant Manager", image: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=150&h=150&fit=crop", content: "Outstanding work! They understood our business needs and created a space that our customers love. The ROI has been incredible.", rating: 5 }, { name: "Emily Chen", role: "Boutique Owner", image: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop", content: "From concept to completion, the experience was seamless. Our renovated space has become a destination in itself.", rating: 5 } ]; const pricingPlans = [ { name: "Starter", price: "$5,000", description: "Perfect for small updates and refreshes", features: [ "Single room renovation", "Basic design consultation", "Quality materials", "30-day completion", "1-year warranty" ], popular: false }, { name: "Professional", price: "$15,000", description: "Ideal for growing businesses", features: [ "Multi-room renovation", "Custom design package", "Premium materials", "Project management", "3-year warranty", "Priority scheduling" ], popular: true }, { name: "Enterprise", price: "Custom", description: "Complete transformation for established businesses", features: [ "Full property renovation", "Architectural design", "Luxury materials", "Dedicated team", "5-year warranty", "24/7 support", "Financing options" ], popular: false } ]; const faqs = [ { question: "How long does a typical renovation take?", answer: "Project timelines vary based on scope, but most small business renovations take 4-8 weeks. We provide a detailed timeline during consultation and keep you updated throughout the process." }, { question: "Can you work around my business hours?", answer: "Absolutely! We understand that minimizing downtime is crucial. We offer flexible scheduling, including evenings and weekends, to keep your business operational." }, { question: "Do you handle permits and inspections?", answer: "Yes, we manage all necessary permits, inspections, and compliance requirements. Our team ensures your renovation meets all local building codes and regulations." }, { question: "What's included in the warranty?", answer: "Our warranty covers all workmanship and materials. The duration varies by package, ranging from 1-5 years. We also offer extended warranty options for additional peace of mind." }, { question: "Do you offer financing options?", answer: "Yes, we partner with leading financial institutions to offer flexible financing solutions. Our team can help you find a payment plan that fits your budget." } ]; const stats = [ { number: "500+", label: "Projects Completed" }, { number: "98%", label: "Client Satisfaction" }, { number: "15+", label: "Years Experience" }, { number: "50+", label: "Expert Team Members" } ]; const handleInputChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); console.log('Form submitted:', formData); }; return (
{/* Hero Section */}
Award-Winning Renovation Experts

Transform Your Space, Grow Your Business

Professional renovations that attract more customers and increase your revenue. Quality craftsmanship, on time and on budget.

{/* Proof Section */}
{stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
{/* Features Section */}
Why Choose Us

Everything You Need to Succeed

We provide comprehensive renovation services designed to help your business thrive

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

{feature.description}

))}
{/* Testimonials Section */}
Success Stories

What Our Clients Say

Real results from real business owners who transformed their spaces

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

"{testimonial.content}"

))}
{/* Pricing Section */}
Flexible Options

Investment Plans That Work

Choose the perfect package for your business needs and budget

{pricingPlans.map((plan, index) => ( {plan.popular && (
Most Popular
)} {plan.name} {plan.description}
{plan.price} {plan.price !== "Custom" && / project}
    {plan.features.map((feature, fIndex) => (
  • {feature}
  • ))}
))}
{/* FAQ Section */}
Got Questions?

Frequently Asked Questions

Everything you need to know about our renovation process

{faqs.map((faq, index) => ( {faq.question} {faq.answer} ))}
{/* Contact Section */}
Let's Talk

Start Your Transformation Today

Get a free consultation and discover how we can help grow your business

Contact Information Reach out to us through any of these channels
Phone
+1 (555) 123-4567
Email
hello@renovationpro.com
Address
123 Renovation Street, Suite 100
Business City, BC 12345