Files
eryao/web/src/pages/zh_Hant/index.astro
T

14 lines
413 B
Plaintext
Raw Normal View History

---
import MarketingLayout from '../../layouts/Marketing.astro';
import Hero from '../../components/Hero.astro';
import Showcase from '../../components/Showcase.astro';
import CtaSection from '../../components/CtaSection.astro';
const locale = 'zh_Hant' as const;
---
<MarketingLayout locale={locale}>
<Hero locale={locale} />
<Showcase locale={locale} />
<CtaSection locale={locale} />
</MarketingLayout>