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