Skip to content

Commit 9ce31b3

Browse files
feat(data): introducing data page
1 parent 851ebba commit 9ce31b3

File tree

15 files changed

+1453
-50
lines changed

15 files changed

+1453
-50
lines changed

src/assets/lottie/data-plugins.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

src/components/common/BlueprintsGrid.astro

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Carousel from "~/components/common/Carousel.vue"
55
66
interface Props {
77
title: string
8+
subtitle?: string
89
blueprints: any[]
910
tags: any[]
1011
link: {
@@ -13,14 +14,17 @@ interface Props {
1314
}
1415
}
1516
16-
const { title, blueprints, tags, link } = Astro.props
17+
const { title, subtitle, blueprints, tags, link } = Astro.props
1718
1819
const displayBlueprints = blueprints?.slice(0, 20) ?? []
1920
---
2021

2122
<section class="blueprints-carousel">
2223
<div class="container">
23-
<h2 data-usal="fade-u delay-0 duration-400 ease-out" set:html={title} />
24+
<div>
25+
<h2 data-usal="fade-l" set:html={title} />
26+
<p data-usal="fade-r" set:html={subtitle} />
27+
</div>
2428

2529
<div class="blueprints-container d-md-none">
2630
<Carousel client:load>

0 commit comments

Comments
 (0)