mirror of
https://github.com/remvze/moodist.git
synced 2025-12-19 18:04:13 +00:00
19 lines
317 B
Text
19 lines
317 B
Text
---
|
|
import Layout from '@/layouts/layout.astro';
|
|
|
|
import { Hero } from '@/components/hero';
|
|
import { Categories } from '@/components/categories';
|
|
---
|
|
|
|
<Layout title="Welcome to Astro.">
|
|
<main>
|
|
<Hero />
|
|
<Categories client:load />
|
|
</main>
|
|
</Layout>
|
|
|
|
<style>
|
|
main {
|
|
padding-bottom: 100px;
|
|
}
|
|
</style>
|