Skip to content

Commit f9950a3

Browse files
committed
feat: 데모 영상 추가
- 소개 페이지의 iframe 을 video 태그를 사용하여 정적 파일로 대체
1 parent 06b0d81 commit f9950a3

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

app/about/page.tsx

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable jsx-a11y/media-has-caption */
12
/* eslint-disable @next/next/no-img-element */
23
import { cn } from '@/lib/utils';
34
import { typography } from '@/styles/typography';
@@ -438,16 +439,9 @@ function VideoSection(): React.JSX.Element {
438439
alt="double twinkle"
439440
className="absolute -right-13 -top-6 -translate-y-full translate-x-full"
440441
/>
441-
<iframe
442-
width="1009"
443-
height="575"
444-
src="https://www.youtube.com/embed/tE68vioSJfk"
445-
title='[4K] "Gravity" by FIFTY FIFTY live performance [MMT LIVE]'
446-
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
447-
referrerPolicy="strict-origin-when-cross-origin"
448-
allowFullScreen
449-
className="mx-auto"
450-
/>
442+
<video width="1009" height="575" controls className="mx-auto">
443+
<source src="/videos/project-demo.mp4" type="video/mp4" />
444+
</video>
451445
</div>
452446
</div>
453447
</section>

public/videos/project-demo.mp4

3.89 MB
Binary file not shown.

0 commit comments

Comments
 (0)