mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 17:04:15 +00:00
17 lines
421 B
Text
17 lines
421 B
Text
---
|
|
import Layout from '@/layouts/layout.astro';
|
|
import Donate from '@/components/donate.astro';
|
|
import Footer from '@/components/footer.astro';
|
|
|
|
import { Hero } from '@/components/hero';
|
|
import { App } from '@/components/app';
|
|
import { Source } from '@/components/source';
|
|
---
|
|
|
|
<Layout title="Moodist: Ambient Sounds for Focus and Calm">
|
|
<Donate />
|
|
<Hero />
|
|
<App client:load />
|
|
<Source />
|
|
<Footer />
|
|
</Layout>
|