From 595d23b7a06d634604dd7f62d4ce09dbcdbd7a54 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 13:15:17 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index dc21545..f1ccbb3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import FaqBase from "@/components/sections/faq/FaqBase"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Bot, CheckCircle, Mail, DollarSign } from "lucide-react"; +import { Bot, CheckCircle, Mail, DollarSign, LayoutDashboard, Database, Settings } from "lucide-react"; export default function AIAgentsTemplatePage() { const navItems = [ @@ -69,9 +69,9 @@ export default function AIAgentsTemplatePage() { { title: "Latency", values: [10, 12, 11], description: "ms" }, ], sidebarItems: [ - { label: "Dashboard", href: "#" }, - { label: "Agents", href: "#" }, - { label: "Settings", href: "#" }, + { icon: LayoutDashboard, active: true }, + { icon: Database, active: false }, + { icon: Settings, active: false }, ], chartTitle: "Runs (24h)", chartData: [{ value: 120 }, { value: 85 }], listTitle: "Activity", listItems: [{ icon: CheckCircle, title: "Report", status: "Done" }], -- 2.49.1