2026-02-12 23:27:13 -05:00
|
|
|
---
|
|
|
|
|
import Layout from '../layouts/Main.astro';
|
2026-02-26 18:08:08 -05:00
|
|
|
import Search from '../components/Search.astro';
|
2026-02-17 07:44:41 -05:00
|
|
|
import CardGrid from "../components/CardGrid.astro";
|
2026-02-26 18:08:08 -05:00
|
|
|
import NavBar from '../components/NavBar.astro';
|
2026-02-17 13:27:48 -05:00
|
|
|
export const prerender = false;
|
2026-02-12 23:27:13 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<Layout>
|
2026-02-26 18:08:08 -05:00
|
|
|
<NavBar slot="navbar">
|
|
|
|
|
<Search slot="searchInput" />
|
|
|
|
|
</NavBar>
|
|
|
|
|
<CardGrid slot="page" />
|
2026-02-17 07:44:41 -05:00
|
|
|
</Layout>
|