9 lines
274 B
Plaintext
9 lines
274 B
Plaintext
|
|
---
|
||
|
|
import MarketingLayout from '../../layouts/Marketing.astro';
|
||
|
|
import LegalPage from '../../components/LegalPage.astro';
|
||
|
|
const locale = 'zh_Hant' as const;
|
||
|
|
---
|
||
|
|
<MarketingLayout locale={locale}>
|
||
|
|
<LegalPage locale={locale} docType="terms_of_service" />
|
||
|
|
</MarketingLayout>
|