Skip to content

Commit ce62209

Browse files
committed
fix(landing): route pricing to reviewed page
1 parent 080a90c commit ce62209

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

apps/landing-page/app/pages/pricing/index.astro

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ import { localeFromPath, localizedHref } from '../../i18n';
3939
import { DEEPSEEK_V4_PRO_CAMPAIGN } from '../../_lib/deepseek-v4-pro-campaign';
4040
import { getPricingCampaignContent } from '../../_lib/pricing-campaign-content';
4141
42+
if (Astro.url.pathname === '/pricing' || Astro.url.pathname === '/pricing/') {
43+
return Astro.redirect('/pricing-e-final/?review=pricing', 302);
44+
}
45+
4246
const locale = localeFromPath(Astro.url.pathname);
4347
const isZh = locale === 'zh' || locale === 'zh-tw';
4448
const href = (path: string) => localizedHref(path, locale);

0 commit comments

Comments
 (0)