Files
myeasycms-v2/apps/web/config/personal-account-sidebar.config.tsx
giancarlo cb8b23e8c0 Remove billing and checkout redirect buttons and related services
Deleted the billing-redirect-button, checkout-redirect-button, and embedded-stripe-checkout components. Additionally, removed the shadcn directory, which encompassed billing-related icons. This change streamlines the subscription settings interface and organizes the system's payment management. This update is a stepping stone towards improving the billing system's overall architecture.
2024-03-25 11:39:41 +08:00

35 lines
888 B
TypeScript

import { CreditCardIcon, HomeIcon, UserIcon } from 'lucide-react';
import { SidebarConfigSchema } from '@kit/ui/sidebar-schema';
import featureFlagsConfig from '~/config/feature-flags.config';
import pathsConfig from '~/config/paths.config';
const iconClasses = 'w-4';
const routes = [
{
label: 'common:homeTabLabel',
path: pathsConfig.app.home,
Icon: <HomeIcon className={iconClasses} />,
end: true,
},
{
label: 'common:yourAccountTabLabel',
path: pathsConfig.app.personalAccountSettings,
Icon: <UserIcon className={iconClasses} />,
},
];
if (featureFlagsConfig.enablePersonalAccountBilling) {
routes.push({
label: 'common:billingTabLabel',
path: pathsConfig.app.personalAccountBilling,
Icon: <CreditCardIcon className={iconClasses} />,
});
}
export const personalAccountSidebarConfig = SidebarConfigSchema.parse({
routes,
});