Files
talk-pro/src/pages/index.astro

17 lines
397 B
Plaintext
Raw Normal View History

---
2026-05-12 16:27:03 +08:00
import Base from '../layouts/Base.astro'
2026-05-12 16:28:30 +08:00
import Header from '../components/Header.astro'
2026-05-12 16:30:36 +08:00
import Hero from '../components/Hero.astro'
2026-05-12 16:32:14 +08:00
import CoreSystem from '../components/CoreSystem.astro'
2026-05-12 16:33:59 +08:00
import UseCases from '../components/UseCases.astro'
2026-05-12 16:34:26 +08:00
import DownloadCTA from '../components/DownloadCTA.astro'
---
2026-05-12 16:27:03 +08:00
<Base>
2026-05-12 16:28:30 +08:00
<Header />
2026-05-12 16:30:36 +08:00
<Hero />
2026-05-12 16:32:14 +08:00
<CoreSystem />
2026-05-12 16:33:59 +08:00
<UseCases />
2026-05-12 16:34:26 +08:00
<DownloadCTA />
2026-05-12 16:27:03 +08:00
</Base>