Files
eryao/web/src/pages/en/pricing.astro
T

9 lines
248 B
Plaintext
Raw Normal View History

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