2026-02-12 23:27:13 -05:00
|
|
|
---
|
|
|
|
|
import Layout from '../layouts/Main.astro';
|
2026-02-17 07:44:41 -05:00
|
|
|
import CardGrid from "../components/CardGrid.astro";
|
|
|
|
|
import Card from "../components/Card.astro";
|
|
|
|
|
import StickyFilter from '../components/StickyFilter.astro';
|
2026-02-12 23:27:13 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<Layout>
|
2026-02-17 07:44:41 -05:00
|
|
|
<StickyFilter />
|
2026-02-12 23:27:13 -05:00
|
|
|
<div class="container">
|
2026-02-16 15:54:07 -05:00
|
|
|
<h1 class="my-5">Rigid's app thing</h1>
|
2026-02-17 07:44:41 -05:00
|
|
|
<CardGrid>
|
|
|
|
|
<Card slot="Card"></Card>
|
|
|
|
|
</CardGrid>
|
|
|
|
|
</div>
|
2026-02-12 23:27:13 -05:00
|
|
|
</div>
|
2026-02-17 07:44:41 -05:00
|
|
|
</Layout>
|