Files
moodist/src/pages/index.astro
2023-11-05 15:22:52 +03:30

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>