diff --git a/apps/duskmoon_storybook_web/lib/duskmoon_storybook_web/components/layouts/app.html.heex b/apps/duskmoon_storybook_web/lib/duskmoon_storybook_web/components/layouts/app.html.heex
index 39ed35f..1041fd7 100644
--- a/apps/duskmoon_storybook_web/lib/duskmoon_storybook_web/components/layouts/app.html.heex
+++ b/apps/duskmoon_storybook_web/lib/duskmoon_storybook_web/components/layouts/app.html.heex
@@ -54,6 +54,15 @@
<:menu>
<.dm_left_menu_group active={assigns[:active_menu]}>
+
+
-
+
+
+ -
- <%= render_slot(@title) %>
-
-
<.link
- :for={{m, _i} <- Enum.with_index(@menu)}
- class={[
- "flex flex-row justify-start items-center",
- "px-6 py-4 rounded-lg w-full cursor-pointer",
- if Map.get(m, :id, "") == @active do
- @active_class
- end,
- Map.get(m, :class, "")
- ]}
- navigate={Map.get(m, :to, "")}
+ class={if(Map.get(m, :id, false) == assigns[:active], do: "active")}
+ navigate={Map.get(m, :to, "#")}
>
-
- <%= render_slot(m) %>
-
+ <%= render_slot(m) %>
-
-
+
+
"""
end
end