Fix reel embed URL to correct Vimeo video ID
This commit is contained in:
parent
8ef973d63d
commit
0859b86657
1 changed files with 5 additions and 7 deletions
|
|
@ -5,7 +5,7 @@ import Image from "next/image";
|
||||||
import ScrollReveal from "./ScrollReveal";
|
import ScrollReveal from "./ScrollReveal";
|
||||||
import { X, Camera, Film, Package, Monitor } from "lucide-react";
|
import { X, Camera, Film, Package, Monitor } from "lucide-react";
|
||||||
|
|
||||||
const REEL_URL = "https://player.vimeo.com/video/805286240";
|
const REEL_URL = "https://player.vimeo.com/video/225920311?h=0&badge=0&autopause=0&player_id=0&app_id=58479";
|
||||||
|
|
||||||
// Drop on-set stills into /public/images/on-set/ and add them here
|
// Drop on-set stills into /public/images/on-set/ and add them here
|
||||||
const photos: { src: string; alt: string; caption: string }[] = [];
|
const photos: { src: string; alt: string; caption: string }[] = [];
|
||||||
|
|
@ -97,14 +97,12 @@ export default function OnSet() {
|
||||||
<p className="font-mono text-[10px] tracking-[0.3em] uppercase text-accent mb-6">
|
<p className="font-mono text-[10px] tracking-[0.3em] uppercase text-accent mb-6">
|
||||||
Reel
|
Reel
|
||||||
</p>
|
</p>
|
||||||
<div
|
<div style={{ padding: "56.25% 0 0 0", position: "relative" }}>
|
||||||
className="relative w-full rounded-xl overflow-hidden border border-neutral-200/80 shadow-lg shadow-neutral-200/40"
|
|
||||||
style={{ paddingBottom: "56.25%" }}
|
|
||||||
>
|
|
||||||
<iframe
|
<iframe
|
||||||
src={REEL_URL}
|
src={REEL_URL}
|
||||||
className="absolute inset-0 w-full h-full"
|
style={{ position: "absolute", top: 0, left: 0, width: "100%", height: "100%" }}
|
||||||
allow="autoplay; fullscreen; picture-in-picture"
|
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
|
allowFullScreen
|
||||||
title="Showreel"
|
title="Showreel"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue