--- import ExperienceLayout from "@layouts/ExperienceLayout.astro"; import Carousel from "@components/CustomCarousel/CustomCarousel.astro"; import type {carouselGroup} from "@interfaces/image-carousel.ts"; import YtVideo from "@components/YtVideo.astro"; import type {videoConfig} from "@interfaces/video.ts"; const headerCarouselGroup: carouselGroup = { animation: "slide", images: [] } const videoList: videoConfig[] = [ { videoTitle: "Ground Station Software Quick Overview", videoPath: "https://www.youtube-nocookie.com/embed/ZjGW-HWapVA" }, { videoTitle: "Rover Software Environment And Full Code Overview", videoPath: "https://www.youtube-nocookie.com/embed/sceA2ZbEV8Y" } ] ---

Ground Station Readouts & Features

Rover Demos and Software Overviews

{videoList.map((video) => (

{video.videoTitle}

))}