diff --git a/src/app/(dashboard)/layout.tsx b/src/app/(dashboard)/layout.tsx
index 46aafe6..c0cba25 100644
--- a/src/app/(dashboard)/layout.tsx
+++ b/src/app/(dashboard)/layout.tsx
@@ -1,6 +1,7 @@
import { redirect } from "next/navigation";
import { getSession } from "@/lib/auth";
import { db } from "@/lib/db";
+import { SuggestionLightbulb } from "@otm/account-panel";
import { Sidebar } from "@/components/layout/sidebar";
import { TopNav } from "@/components/layout/topnav";
import { Footer } from "@/components/layout/footer";
@@ -31,6 +32,11 @@ export default async function DashboardLayout({ children }: { children: React.Re
+ {/* Floating quick-capture idea/feedback widget (parity with dms + fmb).
+ Mounted at the shell root — a fixed-position child of a backdrop-blur
+ ancestor would get trapped. Posts to /api/suggestions → files a Gitea
+ issue; "View all →" links to the full triage page. */}
+
);
}
diff --git a/src/lib/changelog.ts b/src/lib/changelog.ts
index 4a526c7..27656d8 100644
--- a/src/lib/changelog.ts
+++ b/src/lib/changelog.ts
@@ -8,6 +8,13 @@ export type ChangelogEntry = {
};
export const CHANGELOG: ChangelogEntry[] = [
+ {
+ version: "0.30.0",
+ date: "2026-07-12",
+ changes: [
+ "Added the floating feedback/idea button (bottom-right corner) that the shop and bakery apps have — jot a quick idea or bug from any page, paste in a screenshot, and it files straight to the project. The header lightbulb still opens the full list.",
+ ],
+ },
{
version: "0.29.0",
date: "2026-07-12",
diff --git a/src/lib/version.ts b/src/lib/version.ts
index 4e02442..cff4918 100644
--- a/src/lib/version.ts
+++ b/src/lib/version.ts
@@ -1,2 +1,2 @@
// Bump on every user-visible release. Changelog entries live in `src/lib/changelog.ts`.
-export const APP_VERSION = "0.29.0";
+export const APP_VERSION = "0.30.0";