This commit updates the naming convention of icons from Lucide-React, moving some package dependencies to "peerDependencies" in 'team-accounts', 'admin' and 'auth'. Additionally, it includes tweaks to the development server command in apps/web package.json and adds a logger reference to the shared package. Furthermore, cleanup work has been performed within the features and UI packages, and new scripts to interact with Stripe have been added to the root package.json.
35 lines
864 B
TypeScript
35 lines
864 B
TypeScript
import { CreditCard, Home, User } 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: <Home className={iconClasses} />,
|
|
end: true,
|
|
},
|
|
{
|
|
label: 'common:yourAccountTabLabel',
|
|
path: pathsConfig.app.personalAccountSettings,
|
|
Icon: <User className={iconClasses} />,
|
|
},
|
|
];
|
|
|
|
if (featureFlagsConfig.enablePersonalAccountBilling) {
|
|
routes.push({
|
|
label: 'common:billingTabLabel',
|
|
path: pathsConfig.app.personalAccountBilling,
|
|
Icon: <CreditCard className={iconClasses} />,
|
|
});
|
|
}
|
|
|
|
export const personalAccountSidebarConfig = SidebarConfigSchema.parse({
|
|
routes,
|
|
});
|