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

9 lines
247 B
Plaintext
Raw Normal View History

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