We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4943aa commit faec447Copy full SHA for faec447
1 file changed
src/pages/AboutPage.tsx
@@ -55,7 +55,10 @@ const AboutPage: React.FC = () => {
55
width="100%"
56
style={{ maxHeight: "500px", objectFit: "cover" }}
57
>
58
- <source src="/video/tiger.mp4" type="video/mp4" />
+ <source
59
+ src={`${process.env.PUBLIC_URL}/video/introduction_video.mp4`}
60
+ type="video/mp4"
61
+ />
62
Your browser does not support the video tag.
63
</video>
64
</Box>
@@ -124,7 +127,10 @@ const AboutPage: React.FC = () => {
124
127
125
128
126
129
- <source src="/video/preview_video.mp4" type="video/mp4" />
130
131
+ src={`${process.env.PUBLIC_URL}/video/preview_video.mp4`}
132
133
134
135
136
0 commit comments