Quick chat FAB, active session indicators, memory tab counts, improved new session

This commit is contained in:
Hermes
2026-04-09 21:36:02 -05:00
parent 2550f4c4a7
commit d86cbea6a5
5 changed files with 51 additions and 25 deletions
+10 -1
View File
@@ -1,7 +1,7 @@
"use client";
import Link from "next/link";
import { Puzzle, Timer, Sparkles, Settings } from "lucide-react";
import { Puzzle, Timer, Sparkles, Settings, MessageCircle } from "lucide-react";
import { useQueryClient } from "@tanstack/react-query";
import { StatusCard } from "@/components/StatusCard";
import { StatsCard } from "@/components/StatsCard";
@@ -66,6 +66,15 @@ export default function PulsePage() {
</div>
)}
</div>
{/* Quick chat FAB */}
<Link
href="/history/new"
className="fixed right-5 z-40 flex items-center justify-center w-14 h-14 rounded-full shadow-lg active:scale-90 transition-transform"
style={{ background: "var(--accent)", bottom: "calc(5.5rem + var(--safe-bottom))" }}
>
<MessageCircle size={22} color="white" />
</Link>
</div>
);
}