import { CreditCard, Home, User } from 'lucide-react';
import { NavigationConfigSchema } from '@kit/ui/navigation-schema';
import featureFlagsConfig from '~/config/feature-flags.config';
import pathsConfig from '~/config/paths.config';
const iconClasses = 'w-4';
const routes = [
{
label: 'common:routes.home',
path: pathsConfig.app.home,
Icon: ,
end: true,
},
{
label: 'common:routes.account',
path: pathsConfig.app.personalAccountSettings,
Icon: ,
},
];
if (featureFlagsConfig.enablePersonalAccountBilling) {
routes.push({
label: 'common:routes.billing',
path: pathsConfig.app.personalAccountBilling,
Icon: ,
});
}
export const personalAccountNavigationConfig = NavigationConfigSchema.parse({
routes,
style: process.env.NEXT_PUBLIC_USER_NAVIGATION_STYLE,
});