Refactor billing components for marketing usage

A new component 'marketing.tsx' was added to the 'billing-gateway' package, for better organization of marketing-related components. This affects the structure of 'package.json' and requires adjustments in 'index.ts'. The import paths in both marketing-related pages ('pricing/page.tsx', 'page.tsx') were also updated for consistency.
This commit is contained in:
giancarlo
2024-04-17 21:36:42 +08:00
parent 5a74f93d26
commit 64402e824c
5 changed files with 12 additions and 11 deletions

View File

@@ -2,5 +2,4 @@ export * from './plan-picker';
export * from './current-subscription-card';
export * from './current-lifetime-order-card';
export * from './billing-session-status';
export * from './billing-portal-card';
export * from './pricing-table';
export * from './billing-portal-card';

View File

@@ -0,0 +1 @@
export * from './pricing-table';