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