mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
19 lines
538 B
Text
19 lines
538 B
Text
---
|
|
import Layout from '@/layouts/layout.astro';
|
|
import Footer from '@/components/footer.astro';
|
|
import AboutSection from '@/components/sections/about.astro';
|
|
import WhySection from '@/components/sections/why.astro';
|
|
import ReadySection from '@/components/sections/ready.astro';
|
|
|
|
import { Hero } from '@/components/hero';
|
|
import { App } from '@/components/app';
|
|
---
|
|
|
|
<Layout title="Moodist: Ambient Sounds for Focus and Calm">
|
|
<Hero />
|
|
<App client:load />
|
|
<AboutSection />
|
|
<WhySection />
|
|
<ReadySection />
|
|
<Footer />
|
|
</Layout>
|