mirror of
https://github.com/remvze/moodist.git
synced 2026-03-11 22:54:42 +08:00
20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
---
|
|
import Layout from '@/layouts/layout.astro';
|
|
|
|
import { Gradient } from '@/components/gradient';
|
|
import { Hero } from '@/components/hero';
|
|
import { App } from '@/components/app';
|
|
import { Footer } from '@/components/footer';
|
|
import { AboutSection, WhySection, ReadySection } from '@/components/sections';
|
|
---
|
|
|
|
<Layout title="Welcome to Astro.">
|
|
<Gradient />
|
|
<Hero />
|
|
<App client:load />
|
|
<AboutSection />
|
|
<WhySection />
|
|
<ReadySection client:load />
|
|
<Footer />
|
|
</Layout>
|