Added media for kube, home server rack, body mods, chubby buttons, and home page
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
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
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
---
|
||||
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
||||
import Carousel from "@components/CustomCarousel.astro";
|
||||
|
||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||
|
||||
import bottom_fasteners_installed from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/bottom-fasteners-installed.jpg";
|
||||
import closed_seam from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/closed-seam.jpg";
|
||||
import closed_top_buttons_installed from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/closed-top-buttons-installed.jpg";
|
||||
import inside_top_and_bottom from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/inside-top-and-bottom.jpg";
|
||||
import inside_top_and_bottom_buttons_installed from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/inside-top-and-bottom-buttons-installed.jpg";
|
||||
import inside_top_and_bottom_with_buttons from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/inside-top-and-bottom-with-buttons.jpg";
|
||||
import installed_on_bike_handlebars_reference from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/installed-on-bike-handlebars-reference.jpg";
|
||||
import installed_on_bike_riders_position from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/installed-on-bike-riders-position.jpg";
|
||||
import top_and_bottom from "@assets/hobby/motorcycling/custom-accessories/chubby-buttons-2-mount/top-and-bottom.jpg";
|
||||
|
||||
const headerCarouselGroup: carouselGroup = {
|
||||
animation: "slide",
|
||||
images: [
|
||||
installed_on_bike_riders_position,
|
||||
installed_on_bike_handlebars_reference,
|
||||
closed_top_buttons_installed,
|
||||
bottom_fasteners_installed,
|
||||
closed_seam,
|
||||
inside_top_and_bottom_buttons_installed,
|
||||
inside_top_and_bottom_with_buttons,
|
||||
inside_top_and_bottom,
|
||||
top_and_bottom
|
||||
]
|
||||
}
|
||||
---
|
||||
|
||||
<HobbyLayout title="Chubby Buttons 2 Mount">
|
||||
<Carousel carouselGroup={headerCarouselGroup}/>
|
||||
</HobbyLayout>
|
||||
Reference in New Issue
Block a user