seo: descriptive iframe title, improved H2 for on-set section
This commit is contained in:
parent
2e070e2331
commit
5e38676b87
1 changed files with 10 additions and 8 deletions
|
|
@ -87,12 +87,14 @@ export default function OnSet() {
|
|||
On Set
|
||||
</p>
|
||||
<h2 className="text-3xl md:text-4xl font-semibold text-primary leading-tight mb-5">
|
||||
Behind the lens.
|
||||
Camera Operator & DP,{" "}
|
||||
<span className="font-light">Washington DC.</span>
|
||||
</h2>
|
||||
<p className="text-muted leading-relaxed">
|
||||
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.
|
||||
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. Available for commercial,
|
||||
corporate, sports, and narrative work throughout the DMV.
|
||||
</p>
|
||||
</div>
|
||||
</ScrollReveal>
|
||||
|
|
@ -110,7 +112,7 @@ export default function OnSet() {
|
|||
className="rounded-xl border border-neutral-200/80 shadow-lg shadow-neutral-200/40"
|
||||
allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media"
|
||||
allowFullScreen
|
||||
title="Showreel"
|
||||
title="Zachary Gaetano — Camera Operator & DP Showreel"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -220,7 +222,7 @@ export default function OnSet() {
|
|||
<button
|
||||
onClick={() => setLightbox(null)}
|
||||
className="absolute top-6 right-6 text-white/60 hover:text-white transition-colors"
|
||||
aria-label="Close"
|
||||
aria-label="Close lightbox"
|
||||
>
|
||||
<X size={28} />
|
||||
</button>
|
||||
|
|
@ -245,14 +247,14 @@ export default function OnSet() {
|
|||
<button
|
||||
onClick={(e) => { e.stopPropagation(); setLightbox(lightbox - 1); }}
|
||||
className="absolute left-4 top-1/2 -translate-y-1/2 w-10 h-10 rounded-full bg-white/10 hover:bg-white/20 flex items-center justify-center text-white transition-colors"
|
||||
aria-label="Previous"
|
||||
aria-label="Previous photo"
|
||||
>‹</button>
|
||||
)}
|
||||
{lightbox < photos.length - 1 && (
|
||||
<button
|
||||
onClick={(e) => { e.stopPropagation(); setLightbox(lightbox + 1); }}
|
||||
className="absolute right-4 top-1/2 -translate-y-1/2 w-10 h-10 rounded-full bg-white/10 hover:bg-white/20 flex items-center justify-center text-white transition-colors"
|
||||
aria-label="Next"
|
||||
aria-label="Next photo"
|
||||
>›</button>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue