14 lines
413 B
Plaintext
14 lines
413 B
Plaintext
|
|
---
|
||
|
|
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>
|