From 01b61781b3524615ab0e6533d25bc5ab5c58899e Mon Sep 17 00:00:00 2001 From: keven Date: Wed, 17 Sep 2025 12:52:15 -0300 Subject: [PATCH] =?UTF-8?q?fix(Menu):=20Ajusta=20o=20menu=20para=20que=20a?= =?UTF-8?q?s=20p=C3=A1ginas=20sejam=20carregadas=20de=20forma=20assincrona?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/nav-main.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/nav-main.tsx b/src/components/nav-main.tsx index 1d71af1..c7d45b5 100644 --- a/src/components/nav-main.tsx +++ b/src/components/nav-main.tsx @@ -1,6 +1,7 @@ "use client" import { ChevronRight, type LucideIcon } from "lucide-react" +import Link from "next/link"; import { Collapsible, @@ -56,9 +57,9 @@ export function NavMain({ {item.items?.map((subItem) => ( - + {subItem.title} - + ))}