From 6f17248cd3aa34869a67fdd8de74dbaa92f684d3 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:13:17 +0000 Subject: [PATCH] Seed: photography template (19 files) --- src/pages/Services.tsx | 80 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 src/pages/Services.tsx diff --git a/src/pages/Services.tsx b/src/pages/Services.tsx new file mode 100644 index 0000000..91d080f --- /dev/null +++ b/src/pages/Services.tsx @@ -0,0 +1,80 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Heart, User, Building, Sparkles, TreePine, ArrowRight } from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const services = [ + { icon: Heart, title: "Wedding Photography", desc: "Full-day coverage of your ceremony and reception. Includes engagement session, two photographers, and a curated online gallery.", starting: "$3,500" }, + { icon: User, title: "Portrait Sessions", desc: "Individual, couple, or family portraits in studio or on location. Includes styling consultation and 25+ retouched images.", starting: "$450" }, + { icon: Building, title: "Commercial & Brand", desc: "Product photography, brand campaigns, and lifestyle shoots. Includes art direction, retouching, and commercial licensing.", starting: "$2,000" }, + { icon: Sparkles, title: "Fashion Editorial", desc: "High-end editorial and lookbook photography. Studio or on-location with full creative direction and post-production.", starting: "$1,800" }, + { icon: TreePine, title: "Fine Art & Nature", desc: "Limited edition prints and commissioned landscape work. Available as gallery-quality archival prints in various sizes.", starting: "$300" }, +]; + +export default function ServicesPage() { + return ( +
+
+ +
+
+

Services

+

Every project is unique. Here is what I offer, tailored to your vision.

+
+
+ +
+
+ {services.map((svc, i) => ( + + + + {svc.title} + + +

{svc.desc}

+ Starting at {svc.starting} +
+
+ ))} +
+
+ + {/* ── PROCESS ── */} +
+
+

How It Works

+
+
+
01
+

Consultation

+

We discuss your vision, timeline, and creative direction over a relaxed call or coffee.

+
+
+
02
+

The Session

+

I bring my full creative attention to capturing authentic, beautiful moments.

+
+
+
03
+

Delivery

+

Your curated gallery is delivered within two weeks, with prints available on request.

+
+
+
+
+ +
+

Ready to Book?

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