This commit is contained in:
2025-08-31 01:07:48 -04:00
parent 7a7ad1e44d
commit 01c940ea31

View File

@ -15,6 +15,7 @@ import {
IconStarFilled,
IconDashboard,
IconKey,
IconFunction,
} from '@tabler/icons-react';
import Breadcrumbs from '../components/Breadcrumbs';
@ -48,6 +49,14 @@ const HomePage: React.FC = () => {
path: '/app/kms',
category: 'Security',
},
{
id: 'faas',
name: 'Function-as-a-Service',
description: 'Deploy and manage serverless functions',
icon: IconFunction,
path: '/app/faas',
category: 'Development',
},
];
const toggleFavorite = (appId: string) => {
@ -137,4 +146,4 @@ const HomePage: React.FC = () => {
);
};
export default HomePage;
export default HomePage;