mirror of
https://github.com/remvze/moodist.git
synced 2025-12-19 09:54:17 +00:00
21 lines
507 B
Text
21 lines
507 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';
|
|
|
|
const currentLocale = Astro.currentLocale || 'en';
|
|
---
|
|
|
|
<Layout>
|
|
<Donate />
|
|
<Hero />
|
|
<App client:load locale={currentLocale} />
|
|
<About />
|
|
<Source />
|
|
<Footer />
|
|
</Layout>
|