From 8ef973d63def0e34798aaafbf86eaeda88d210fe Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Thu, 30 Apr 2026 17:46:36 -0400 Subject: [PATCH] OnSet: populate with real content from wilddragon.net + ShareGrid --- src/components/OnSet.tsx | 214 ++++++++++++++++++++------------------- 1 file changed, 112 insertions(+), 102 deletions(-) diff --git a/src/components/OnSet.tsx b/src/components/OnSet.tsx index 6d31700..9e73eef 100644 --- a/src/components/OnSet.tsx +++ b/src/components/OnSet.tsx @@ -3,55 +3,65 @@ import { useState } from "react"; import Image from "next/image"; import ScrollReveal from "./ScrollReveal"; -import { X, Camera, Film, Package, Award } from "lucide-react"; +import { X, Camera, Film, Package, Monitor } from "lucide-react"; -// ── Replace this with your actual Vimeo or YouTube embed URL ────────────── -// Vimeo: https://player.vimeo.com/video/YOUR_VIDEO_ID?autoplay=0 -// YouTube: https://www.youtube.com/embed/YOUR_VIDEO_ID -const REEL_URL = "https://player.vimeo.com/video/YOUR_VIDEO_ID"; +const REEL_URL = "https://player.vimeo.com/video/805286240"; -// ── On-set stills ───────────────────────────────────────────────────────── -// Drop files into /public/images/on-set/ and update this list -const photos = [ - { src: "/images/on-set/on-set-1.jpg", alt: "On set", caption: "" }, - { src: "/images/on-set/on-set-2.jpg", alt: "On set", caption: "" }, - { src: "/images/on-set/on-set-3.jpg", alt: "On set", caption: "" }, - { src: "/images/on-set/on-set-4.jpg", alt: "On set", caption: "" }, - { src: "/images/on-set/on-set-5.jpg", alt: "On set", caption: "" }, - { src: "/images/on-set/on-set-6.jpg", alt: "On set", caption: "" }, -]; +// Drop on-set stills into /public/images/on-set/ and add them here +const photos: { src: string; alt: string; caption: string }[] = []; -// ── Production credits ──────────────────────────────────────────────────── const credits = [ - { title: "Production Title", role: "Camera Operator", format: "Feature Film", year: "2024" }, - { title: "Production Title", role: "Camera Operator", format: "Commercial", year: "2024" }, - { title: "Production Title", role: "1st AC", format: "Short Film", year: "2023" }, - { title: "Production Title", role: "Camera Operator", format: "Documentary", year: "2023" }, - { title: "Production Title", role: "DIT", format: "Music Video", year: "2022" }, - { title: "Production Title", role: "Camera Operator", format: "TV / Broadcast", year: "2022" }, + { title: "Joe Vogel For Congress", role: "Camera Op / Trinity Op", format: "Political", year: "2024" }, + { title: "I Am a Champion", role: "Camera Op / Trinity Op", format: "Sports", year: "2023" }, + { title: "Washington Commanders Schedule Release", role: "Director of Photography", format: "Sports", year: "2023" }, + { title: "Stephen Sharer – MIDNIGHT", role: "DP / Trinity Operator", format: "Narrative", year: "2023" }, + { title: "Stephen Sharer – YOU and I", role: "DP / Trinity Operator", format: "Narrative", year: "2023" }, + { title: "A Chocolate Lens", role: "Camera Operator", format: "Narrative", year: "2023" }, + { title: "Capital One: Pride Month", role: "Director of Photography", format: "Corporate", year: "2021" }, + { title: "Tafon Nchukwi: My Goal Is to Be UFC Champion", role: "Camera Operator", format: "Sports Doc", year: "2020" }, + { title: "Conewago", role: "DP / Editor", format: "Documentary", year: "2020" }, + { title: "Tinder", role: "Director of Photography", format: "Commercial", year: "—" }, + { title: "In Memoriam", role: "Director of Photography", format: "Documentary", year: "2019" }, ]; -// ── Gear / kit list ─────────────────────────────────────────────────────── const gear = [ { - category: "Cameras", + category: "Cinema Cameras", icon: Camera, - items: ["RED KOMODO 6K", "Sony FX6", "GoPro HERO 12"], + items: [ + "RED Komodo-X", + "RED DSMC3 V-Raptor-X 8K VV + 6K S35 Dual-Format (Canon RF)", + ], }, { category: "Lenses", icon: Film, - items: ["Sigma 18-35mm T2", "Canon L Series Primes", "Rokinon Cine DS Set"], + items: [ + "Mamiya 645 Sekor C PL 7 Lens Set", + "Mamiya 645 Sekor C 35mm", + "Mamiya 645 Sekor C 110mm", + "Mamiya 645 Sekor C 150mm", + "16-30mm / 28-75mm / 75-180mm T2.9 Zoom Set", + ], }, { - category: "Support", + category: "Monitoring & Transmission", + icon: Monitor, + items: [ + "SmallHD DSMC3 7\"", + "SmallHD Cine7 with Bolt 6 1500RX", + "Teradek Bolt 6 Max XT Kit (TX + RX)", + "DJI SDR Transmission", + ], + }, + { + category: "Camera Support", icon: Package, - items: ["DJI RS 3 Pro Gimbal", "Sachtler Fluid Head", "Dana Dolly"], - }, - { - category: "Accessories", - icon: Award, - items: ["SmallHD 502 Monitor", "Teradek Bolt 500", "Litepanels Astra 1x1"], + items: [ + "Arri Trinity — Certified Owner & Operator", + "Dana Dolly Kit (8 / 4ft Speedrail, 2× Matthews Stands)", + "DJI Focus Pro All In One", + ], }, ]; @@ -74,9 +84,9 @@ export default function OnSet() { Behind the lens.

- Camera operator and on-set technician for film, commercial, and broadcast productions. - Comfortable in fast-paced environments — from documentary run-and-gun to multi-camera - studio setups. + Camera Operator & DP local to the DMV. Certified Arri Trinity owner and operator + with RED camera packages and specialized live production gear — from run-and-gun + documentary to multi-camera sports and political campaigns.

@@ -87,8 +97,10 @@ export default function OnSet() {

Reel

-
+