From 01c940ea3136afa450e1f72048dfacda4a28e5fa Mon Sep 17 00:00:00 2001 From: Ryan Copley Date: Sun, 31 Aug 2025 01:07:48 -0400 Subject: [PATCH] - --- web/src/pages/HomePage.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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;