From 3cf2609d1d252aae5a5f71bfecedcb9866923163 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:13:14 +0000 Subject: [PATCH] Seed: photography template (19 files) --- src/pages/Index.tsx | 141 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 src/pages/Index.tsx diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx new file mode 100644 index 0000000..c577224 --- /dev/null +++ b/src/pages/Index.tsx @@ -0,0 +1,141 @@ +import { useState } from "react"; +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Dialog, DialogContent, DialogTrigger } from "@/components/ui/dialog"; +import { ArrowRight, Camera } from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const categories = ["Wedding", "Portrait", "Commercial", "Fashion", "Nature"]; + +const featured = [ + { title: "The Golden Hour", category: "Wedding", img: "https://images.unsplash.com/photo-1519741497674-611481863552?w=800&h=600&fit=crop", large: true }, + { title: "Quiet Strength", category: "Portrait", img: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=600&h=400&fit=crop", large: false }, + { title: "Urban Canvas", category: "Commercial", img: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&h=400&fit=crop", large: false }, + { title: "Runway Noir", category: "Fashion", img: "https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=800&h=600&fit=crop", large: true }, + { title: "Pacific Dawn", category: "Nature", img: "https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=600&h=400&fit=crop", large: false }, + { title: "Luminance", category: "Portrait", img: "https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?w=600&h=400&fit=crop", large: false }, +]; + +const testimonials = [ + { quote: "Elena captured our wedding day in a way that still takes our breath away. Every photo tells a piece of our story.", name: "Sarah & James", event: "Wedding, Napa Valley" }, + { quote: "The portraits exceeded every expectation. She has this incredible ability to make you feel comfortable and look your best.", name: "Marcus Chen", event: "Portrait Session" }, + { quote: "Working with Elena on our brand campaign was seamless. The images elevated our entire visual identity.", name: "Olivia Reed", event: "Commercial Campaign" }, +]; + +export default function IndexPage() { + const [lightbox, setLightbox] = useState(null); + + return ( +
+
+ + {/* ── HERO ── */} +
+
+
+

+ Elena Torres +

+

Capturing light, emotion, and the moments in between

+ +
+
+ + {/* ── FEATURED WORK ── */} +
+
+

Selected Work

+

A curated selection from recent sessions and personal projects.

+ +
+ {featured.map((item, i) => ( + + +
+ {item.title} +
+
+ {item.category} +

{item.title}

+
+
+
+
+ + {item.title} + +
+ ))} +
+
+
+ + {/* ── CATEGORIES ── */} +
+
+ {categories.map((cat) => ( + + + {cat} + + + ))} +
+
+ + {/* ── ABOUT PREVIEW ── */} +
+
+
+ Photographer +
+
+

The Eye Behind the Lens

+

With over a decade of experience, I specialize in telling stories through imagery. Every session is an opportunity to capture something authentic and timeless.

+ +
+
+
+ + {/* ── TESTIMONIALS ── */} +
+
+

Kind Words

+
+ {testimonials.map((t, i) => ( + + +

“{t.quote}”

+
+

{t.name}

+

{t.event}

+
+
+
+ ))} +
+
+
+ + {/* ── CTA ── */} +
+
+ +

Lets Create Something Beautiful

+ +
+
+ +
+ ); +} \ No newline at end of file