diff --git a/web/src/pages/HomePage.tsx b/web/src/pages/HomePage.tsx index 2c21c55..0ff851a 100644 --- a/web/src/pages/HomePage.tsx +++ b/web/src/pages/HomePage.tsx @@ -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; \ No newline at end of file +export default HomePage;