Some checks failed
Build and Test - Staging / determine_version (pull_request) Successful in 1m47s
Playwright Tests / test (pull_request) Failing after 2m49s
Build and Test - Staging / build_and_push (pull_request) Successful in 4m36s
Build and Test - Staging / test (pull_request) Successful in 1s
Build and Test - Staging / deploy_staging (pull_request) Successful in 7s
21 lines
548 B
Plaintext
21 lines
548 B
Plaintext
---
|
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
|
import Carousel from "@components/CustomCarousel.astro";
|
|
|
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
|
|
|
import alaska_bike_mountain_ocean from "@assets/about/alaska-bike-mountain-ocean.jpg"
|
|
import headshot from "@assets/about/headshot.png";
|
|
|
|
|
|
const headerCarouselGroup: carouselGroup = {
|
|
animation: "slide",
|
|
images: [
|
|
headshot,
|
|
alaska_bike_mountain_ocean
|
|
]
|
|
}
|
|
---
|
|
<BaseLayout>
|
|
<Carousel carouselGroup={headerCarouselGroup}/>
|
|
</BaseLayout> |