ideas: add Ideas page, nav link; remove feedback button from About

New /ideas/ page with Svelte component: card list sorted by votes,
inline submit form, optimistic vote toggling, delete for own/admin.
Bug report link moved to bottom of Ideas page. Feedback button removed
from About page.
This commit is contained in:
Davide Scaini
2026-05-13 19:29:39 +02:00
parent 9553ca5ce7
commit 38f2e51788
4 changed files with 225 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
---
import Base from '../../layouts/Base.astro';
import IdeasPage from '../../components/IdeasPage.svelte';
---
<Base title="Ideas — BincioActivity">
<IdeasPage client:only="svelte" />
</Base>