import React from "react"; import { motion } from "framer-motion"; import { Camera, Sparkles, Users, Star, Quote, ArrowRight, Calendar, Image as ImageIcon } from "lucide-react"; // 🔧 HOW TO USE YOUR OWN IMAGES // 1) Replace the placeholder image URLs in the arrays below with your actual image URLs // from legacydancephoto.com (or your CDN). Squarespace/Wix/WordPress image links work fine. // 2) Keep aspect ratios roughly similar for best visual results. // 3) You can duplicate or remove items; the layout is responsive. const HERO_IMAGES = [ // Replace these placeholder images with real ones from your site "https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=1600&auto=format&fit=crop", "https://images.unsplash.com/photo-1544011540-98b12e9d3a7f?q=80&w=1600&auto=format&fit=crop", "https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1600&auto=format&fit=crop", ]; const GALLERY_SETS = [ { title: "Children (3–12)", img: "https://images.unsplash.com/photo-1514517220038-1fd8c741cdf3?q=80&w=1200&auto=format&fit=crop" }, { title: "Teens & Young Adults", img: "https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1200&auto=format&fit=crop" }, { title: "Adults & Pros", img: "https://images.unsplash.com/photo-1515165562835-c3b8c0a0a1fc?q=80&w=1200&auto=format&fit=crop" }, { title: "Seniors (50–80)", img: "https://images.unsplash.com/photo-1503342217505-b0a15cf70489?q=80&w=1200&auto=format&fit=crop" }, ]; const TESTIMONIALS = [ { quote: "Danny captured my daughter’s very first recital — the images brought tears to my eyes. He made her feel confident and beautiful.", name: "Lisa M.", }, { quote: "As an adult dancer returning after 20 years, I was nervous. Danny’s guidance and lighting made me feel like a pro.", name: "Renee K.", }, { quote: "Our studio day ran smoothly from start to finish. Parents loved the ordering gallery and the results were stunning.", name: "Studio Director", }, ]; const Feature = ({ icon: Icon, title, children }) => (

{title}

{children}

); export default function LegacyDanceHome() { return (
{/* NAV */}
Legacy Dance Photo
Capturing the art of dance
Book a Session
{/* HERO */}
{/* Simple cross-fade style hero (rotate first image for preview) */} Dancer hero
Capturing the Art of Dance — From First Steps to Final Bow Timeless portraits for dancers ages 3 to 80. Studio, recital, and creative sessions designed to showcase your movement, passion, and story.
{/* WHY LEGACY */}

Why Legacy?

Dance is more than poses — it’s passion, discipline, and joy. I photograph dancers of every age and stage, celebrating their artistry with elegance, emotion, and authenticity.

Tiny ballerinas to lifelong dancers — patient direction and a fun, safe environment for everyone 3–80. Posing, lighting, movement cues — I make it easy to feel confident and look your best. High-end retouching and beautiful wall art, prints, and albums — heirlooms that endure.
{/* FEATURED GALLERIES */}

Featured Galleries

Request a full portfolio
{GALLERY_SETS.map(({ title, img }) => (
{/* SERVICES */}

Sessions & Services

Portrait Sessions

Studio or outdoor portraits with guidance, movement prompts, and elegant lighting. Ideal for all ages.

  • 45–90 minutes
  • Curated proofs + retouching
  • Digital gallery; prints & albums available
Starting at $XXX
Recital & Performance

Backstage details, onstage action, groups & individuals. Streamlined for studios and schools.

  • Coverage tailored to schedule
  • Online ordering for parents
  • Studio partnership rates
Custom packages
Creative Concepts

Editorial-style sessions with dramatic lighting, themes, and locations — for dancers who want something unique.

  • Pre-shoot planning call
  • Styling guidance
  • Studio & outdoor options
Starting at $XXX
{/* PROCESS */}

The Experience

Choose your session type and share your goals. I’ll send a prep guide with wardrobe and tips. Relaxed, guided, and fun. We’ll mix poised portraits with movement for authentic images. Select favorites from a curated gallery. Order prints, albums, and wall art.
{/* TESTIMONIALS */}

What Clients Say

{TESTIMONIALS.map((t, i) => (

“{t.quote}”

— {t.name}
))}
{/* CTA */}
CTA background

Every step deserves to be remembered.

Ready to create something beautiful? Let’s plan your dance session today.

Schedule Now
); }