Enabled astro preload, added video components, videos for software lead, part of content for software lead
Some checks failed
Build and Test - Staging / test (pull_request) Failing after 2m10s
Build and Test - Staging / build_and_push (pull_request) Has been skipped
Build and Test - Staging / deploy_staging (pull_request) Has been skipped

This commit is contained in:
2025-11-10 01:06:31 -08:00
parent 199074f10b
commit 47e10ba05f
4 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
import {type videoConfig} from "@interfaces/video.ts";
const config: videoConfig = Astro.props.videoConfig;
console.log(config);
---
<video class="w-full h-auto max-w-1/2" controls>
<source src={config.videoPath} type={config.videoType ?? "video/mp4"}/>
Your browser does not support the video tag.
</video>