9 lines
251 B
Plaintext
9 lines
251 B
Plaintext
|
|
---
|
||
|
|
import MarketingLayout from '../../layouts/Marketing.astro';
|
||
|
|
import FeaturesPage from '../../components/FeaturesPage.astro';
|
||
|
|
const locale = 'en' as const;
|
||
|
|
---
|
||
|
|
<MarketingLayout locale={locale}>
|
||
|
|
<FeaturesPage locale={locale} />
|
||
|
|
</MarketingLayout>
|