feat: implement interactive dashboard with Recharts visualizations and draggable widgets

This commit is contained in:
Poyraz Avsever
2026-05-08 16:09:31 +03:00
parent 7ab81dcd8b
commit 8f63998d34
2 changed files with 326 additions and 147 deletions
+178 -121
View File
@@ -1,6 +1,6 @@
"use client"; "use client";
import { useMemo } from "react"; import { useState } from "react";
import { import {
Bar, Bar,
BarChart, BarChart,
@@ -15,7 +15,13 @@ import {
XAxis, XAxis,
YAxis, YAxis,
} from "recharts"; } from "recharts";
import { LogOut, CheckSquare2, Droplets, Moon, Target, Activity, MoreHorizontal, PenTool, Plus } from "lucide-react"; import {
CheckSquare2, Droplets, Moon, Target, Activity,
MoreHorizontal, PenTool, Plus, GripVertical, Maximize2
} from "lucide-react";
import { motion, Reorder } from "framer-motion";
import { QuickActionsSheet } from "@/components/dashboard/quick-actions-sheet";
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog";
// Mock Data // Mock Data
const focusTrendData = [ const focusTrendData = [
@@ -73,19 +79,27 @@ const upcomingEvents = [
{ time: "07:00 PM", title: "Daily Reflection", category: "PERSONAL", color: "border-l-purple-500" }, { time: "07:00 PM", title: "Daily Reflection", category: "PERSONAL", color: "border-l-purple-500" },
]; ];
type WidgetId = "sleep" | "water" | "mood" | "distribution";
export default function DashboardPage() { export default function DashboardPage() {
const currentDate = new Date().toLocaleDateString('tr-TR', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' }); const [isQuickActionOpen, setIsQuickActionOpen] = useState(false);
const currentTime = new Date().toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit' }); const [selectedKpi, setSelectedKpi] = useState<WidgetId | null>(null);
// Widget ordering state
const [widgetOrder, setWidgetOrder] = useState<WidgetId[]>(["sleep", "water", "mood", "distribution"]);
return ( return (
<div className="mx-auto max-w-7xl animate-in fade-in slide-in-from-bottom-4 duration-500 space-y-6 text-foreground font-sans"> <div className="mx-auto max-w-7xl animate-in fade-in slide-in-from-bottom-4 duration-500 space-y-6 text-foreground font-sans pb-12">
{/* Top Header */} {/* Top Header */}
<div className="flex items-center justify-between pb-4 border-b border-white/5 mb-6 mt-4"> <div className="flex items-center justify-between pb-4 border-b border-white/5 mb-6 mt-4">
<h1 className="text-lg font-medium text-muted-foreground"> <h1 className="text-lg font-medium text-muted-foreground">
<span className="text-foreground">Dashboard</span> / Overview <span className="text-foreground">Dashboard</span> / Overview
</h1> </h1>
<button className="bg-primary hover:bg-primary/90 text-primary-foreground border border-primary/20 px-4 py-1.5 rounded-sm text-xs font-semibold flex items-center gap-2 transition-colors"> <button
onClick={() => setIsQuickActionOpen(true)}
className="bg-primary hover:bg-primary/90 text-primary-foreground border border-primary/20 px-4 py-1.5 rounded-sm text-xs font-semibold flex items-center gap-2 transition-all active:scale-95 shadow-lg shadow-primary/20"
>
<Plus className="h-4 w-4" /> <Plus className="h-4 w-4" />
QUICK ADD QUICK ADD
</button> </button>
@@ -95,7 +109,7 @@ export default function DashboardPage() {
{/* LEFT COLUMN: Focus Trend (Takes 2 columns on XL) */} {/* LEFT COLUMN: Focus Trend (Takes 2 columns on XL) */}
<div className="xl:col-span-2 flex flex-col gap-6"> <div className="xl:col-span-2 flex flex-col gap-6">
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 flex-1 min-h-[400px]"> <div className="group rounded-sm border border-white/5 bg-[#0A0710] p-6 flex-1 min-h-[400px] relative">
<div className="flex justify-between items-start mb-8"> <div className="flex justify-between items-start mb-8">
<div> <div>
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground mb-4">Focus Trend</h3> <h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground mb-4">Focus Trend</h3>
@@ -154,30 +168,21 @@ export default function DashboardPage() {
{/* RIGHT COLUMN: Quick Add & Upcoming */} {/* RIGHT COLUMN: Quick Add & Upcoming */}
<div className="flex flex-col gap-6"> <div className="flex flex-col gap-6">
{/* Quick Add */} {/* AI Strategy Suggestion (Replacing Quick Add Input) */}
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6"> <div className="rounded-sm border border-primary/20 bg-[#1F172B] p-6 relative overflow-hidden group">
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground mb-4">Quick Add</h3> <div className="absolute top-0 right-0 p-4 opacity-10 group-hover:opacity-30 transition-opacity">
<div className="bg-[#150F1D] border border-white/5 rounded-sm p-3 mb-4"> <Activity className="h-24 w-24 text-primary" />
<input
type="text"
placeholder="What's on your mind?"
className="w-full bg-transparent border-none outline-none text-sm placeholder:text-muted-foreground/50"
/>
</div> </div>
<div className="grid grid-cols-3 gap-3"> <h3 className="text-xs font-semibold uppercase tracking-wider text-primary mb-4 flex items-center gap-2">
<button className="flex flex-col items-center justify-center gap-2 border border-white/5 rounded-sm py-3 hover:bg-white/5 transition-colors text-muted-foreground hover:text-foreground"> <Activity className="h-3 w-3" />
<PenTool className="h-5 w-5" /> AI Insight
<span className="text-[10px] font-semibold tracking-wider">NOTE</span> </h3>
<p className="text-sm font-medium leading-relaxed mb-4">
"Based on your 100% focus score yesterday, you have high mental momentum. Schedule your hardest task for 10:00 AM today."
</p>
<button className="text-[10px] font-bold uppercase tracking-widest text-primary border-b border-primary/50 pb-0.5 hover:border-primary transition-all">
Apply Suggestion
</button> </button>
<button className="flex flex-col items-center justify-center gap-2 border border-white/5 rounded-sm py-3 hover:bg-white/5 transition-colors text-muted-foreground hover:text-foreground">
<Target className="h-5 w-5" />
<span className="text-[10px] font-semibold tracking-wider">HABIT</span>
</button>
<button className="flex flex-col items-center justify-center gap-2 border border-white/5 rounded-sm py-3 hover:bg-white/5 transition-colors text-muted-foreground hover:text-foreground">
<CheckSquare2 className="h-5 w-5" />
<span className="text-[10px] font-semibold tracking-wider">GOAL</span>
</button>
</div>
</div> </div>
{/* Upcoming */} {/* Upcoming */}
@@ -201,94 +206,70 @@ export default function DashboardPage() {
</div> </div>
</div> </div>
{/* BOTTOM ROW: Mini Charts & Donut */} {/* BOTTOM ROW: Draggable Widgets */}
<div className="grid grid-cols-1 md:grid-cols-3 xl:grid-cols-4 gap-6"> <Reorder.Group
axis="x"
{/* Sleep Hours */} values={widgetOrder}
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 flex flex-col justify-between"> onReorder={setWidgetOrder}
<div className="flex justify-between items-start mb-6"> className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-6"
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Sleep Hours</h3> >
<Moon className="h-4 w-4 text-primary" /> {widgetOrder.map((id) => (
</div> <Reorder.Item
<div> key={id}
<div className="flex items-baseline gap-1 mb-6"> value={id}
<span className="text-4xl font-bold">7.2</span> className="cursor-default"
<span className="text-[10px] text-muted-foreground tracking-wider">HOURS</span> >
</div> {id === "sleep" && (
<div className="h-[80px] w-full"> <WidgetCard
<ResponsiveContainer width="100%" height="100%"> title="Sleep Hours"
<BarChart data={sleepData} margin={{ top: 0, right: 0, bottom: 0, left: 0 }}> icon={Moon}
<XAxis dataKey="day" axisLine={false} tickLine={false} tick={{ fontSize: 10, fill: '#8F89A5' }} dy={5} /> value="7.2"
<Tooltip cursor={{ fill: '#ffffff05' }} contentStyle={{ backgroundColor: "#1F172B", border: "none", fontSize: "12px" }} /> unit="HOURS"
<Bar dataKey="value" fill="#6C5BB0" radius={[2, 2, 0, 0]} /> goal="7-8 Hours"
</BarChart> data={sleepData}
</ResponsiveContainer> onExpand={() => setSelectedKpi("sleep")}
</div> />
<div className="mt-4 pt-4 border-t border-white/5 text-[11px] text-primary">Goal: 7-8 Hours</div> )}
{id === "water" && (
<WidgetCard
title="Water Intake"
icon={Droplets}
value="2.1"
unit="LITERS"
goal="2.5L"
data={waterData}
onExpand={() => setSelectedKpi("water")}
/>
)}
{id === "mood" && (
<WidgetCard
title="Mood Score"
icon={Activity}
value="78"
unit="/100"
goal="Positive"
data={moodData}
onExpand={() => setSelectedKpi("mood")}
/>
)}
{id === "distribution" && (
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 h-full flex flex-col group relative">
<div className="absolute top-2 right-2 opacity-0 group-hover:opacity-100 transition-opacity flex gap-1">
<div className="p-1 hover:bg-white/5 rounded-sm cursor-grab active:cursor-grabbing">
<GripVertical className="h-3 w-3 text-muted-foreground" />
</div> </div>
</div> </div>
{/* Water Intake */}
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 flex flex-col justify-between">
<div className="flex justify-between items-start mb-6">
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Water Intake</h3>
<Droplets className="h-4 w-4 text-primary" />
</div>
<div>
<div className="flex items-baseline gap-1 mb-6">
<span className="text-4xl font-bold">2.1</span>
<span className="text-[10px] text-muted-foreground tracking-wider">LITERS</span>
</div>
<div className="h-[80px] w-full">
<ResponsiveContainer width="100%" height="100%">
<BarChart data={waterData} margin={{ top: 0, right: 0, bottom: 0, left: 0 }}>
<XAxis dataKey="day" axisLine={false} tickLine={false} tick={{ fontSize: 10, fill: '#8F89A5' }} dy={5} />
<Tooltip cursor={{ fill: '#ffffff05' }} contentStyle={{ backgroundColor: "#1F172B", border: "none", fontSize: "12px" }} />
<Bar dataKey="value" fill="#6C5BB0" radius={[2, 2, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</div>
<div className="mt-4 pt-4 border-t border-white/5 text-[11px] text-primary">Goal: 2.5L</div>
</div>
</div>
{/* Mood Score */}
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 flex flex-col justify-between">
<div className="flex justify-between items-start mb-6">
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">Mood Score</h3>
<Activity className="h-4 w-4 text-primary" />
</div>
<div>
<div className="flex items-baseline gap-1 mb-6">
<span className="text-4xl font-bold">78</span>
<span className="text-[10px] text-muted-foreground tracking-wider">/100</span>
</div>
<div className="h-[80px] w-full">
<ResponsiveContainer width="100%" height="100%">
<BarChart data={moodData} margin={{ top: 0, right: 0, bottom: 0, left: 0 }}>
<XAxis dataKey="day" axisLine={false} tickLine={false} tick={{ fontSize: 10, fill: '#8F89A5' }} dy={5} />
<Tooltip cursor={{ fill: '#ffffff05' }} contentStyle={{ backgroundColor: "#1F172B", border: "none", fontSize: "12px" }} />
<Bar dataKey="value" fill="#6C5BB0" radius={[2, 2, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</div>
<div className="mt-4 pt-4 border-t border-white/5 text-[11px] text-primary">Positive</div>
</div>
</div>
{/* Focus Distribution */}
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6">
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground mb-6">Focus Distribution</h3> <h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground mb-6">Focus Distribution</h3>
<div className="flex items-center justify-between h-[160px]"> <div className="flex items-center justify-between gap-4">
<div className="w-[140px] h-full relative flex items-center justify-center"> <div className="w-[100px] h-[100px] relative shrink-0">
<ResponsiveContainer width="100%" height="100%"> <ResponsiveContainer width="100%" height="100%">
<PieChart> <PieChart>
<Pie <Pie
data={focusDistributionData} data={focusDistributionData}
cx="50%" cx="50%"
cy="50%" cy="50%"
innerRadius={45} innerRadius={35}
outerRadius={65} outerRadius={50}
paddingAngle={2} paddingAngle={2}
dataKey="value" dataKey="value"
stroke="none" stroke="none"
@@ -297,19 +278,15 @@ export default function DashboardPage() {
<Cell key={`cell-${index}`} fill={entry.color} /> <Cell key={`cell-${index}`} fill={entry.color} />
))} ))}
</Pie> </Pie>
<Tooltip
contentStyle={{ backgroundColor: "#1F172B", border: "none", fontSize: "12px", color: "#FBF9FE" }}
itemStyle={{ color: "#FBF9FE" }}
/>
</PieChart> </PieChart>
</ResponsiveContainer> </ResponsiveContainer>
</div> </div>
<div className="flex-1 ml-6 space-y-3"> <div className="flex-1 space-y-2">
{focusDistributionData.map((item, idx) => ( {focusDistributionData.slice(0, 3).map((item, idx) => (
<div key={idx} className="flex justify-between items-center text-xs"> <div key={idx} className="flex justify-between items-center text-[10px]">
<div className="flex items-center gap-2"> <div className="flex items-center gap-1.5 truncate mr-2">
<div className="w-2 h-2 rounded-sm" style={{ backgroundColor: item.color }}></div> <div className="w-1.5 h-1.5 rounded-full shrink-0" style={{ backgroundColor: item.color }}></div>
<span className="text-muted-foreground">{item.name}</span> <span className="text-muted-foreground truncate">{item.name}</span>
</div> </div>
<span className="font-semibold">{item.value}%</span> <span className="font-semibold">{item.value}%</span>
</div> </div>
@@ -317,12 +294,15 @@ export default function DashboardPage() {
</div> </div>
</div> </div>
</div> </div>
</div> )}
</Reorder.Item>
))}
</Reorder.Group>
{/* Quote Footer */} {/* Quote Footer */}
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 flex justify-between items-center"> <div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 flex justify-between items-center group">
<div className="flex gap-4 items-center"> <div className="flex gap-4 items-center">
<div className="bg-[#150F1D] text-muted-foreground border border-white/5 p-2 rounded-sm"> <div className="bg-[#150F1D] text-muted-foreground border border-white/5 p-2 rounded-sm group-hover:text-primary transition-colors">
<MoreHorizontal className="h-4 w-4" /> <MoreHorizontal className="h-4 w-4" />
</div> </div>
<div> <div>
@@ -333,6 +313,83 @@ export default function DashboardPage() {
<div className="text-sm text-muted-foreground italic">- Jim Rohn</div> <div className="text-sm text-muted-foreground italic">- Jim Rohn</div>
</div> </div>
{/* Sheet & Modals */}
<QuickActionsSheet
isOpen={isQuickActionOpen}
onClose={() => setIsQuickActionOpen(false)}
/>
<Dialog open={!!selectedKpi} onOpenChange={() => setSelectedKpi(null)}>
<DialogContent className="bg-[#0A0710] border-white/5 max-w-2xl">
<DialogHeader>
<DialogTitle className="text-xl font-bold flex items-center gap-2">
{selectedKpi === "sleep" && <><Moon className="h-5 w-5 text-primary" /> Sleep Analysis</>}
{selectedKpi === "water" && <><Droplets className="h-5 w-5 text-primary" /> Hydration Trends</>}
{selectedKpi === "mood" && <><Activity className="h-5 w-5 text-primary" /> Mood Tracking</>}
</DialogTitle>
</DialogHeader>
<div className="h-[300px] w-full mt-6">
<ResponsiveContainer width="100%" height="100%">
<BarChart data={selectedKpi === "sleep" ? sleepData : selectedKpi === "water" ? waterData : moodData}>
<CartesianGrid strokeDasharray="3 3" vertical={false} stroke="#ffffff10" />
<XAxis dataKey="day" axisLine={false} tickLine={false} tick={{ fontSize: 12, fill: '#8F89A5' }} />
<YAxis axisLine={false} tickLine={false} tick={{ fontSize: 12, fill: '#8F89A5' }} />
<Tooltip
cursor={{ fill: '#ffffff05' }}
contentStyle={{ backgroundColor: "#1F172B", border: "none", borderRadius: "4px" }}
/>
<Bar dataKey="value" fill="#6C5BB0" radius={[4, 4, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</div>
<div className="mt-8 grid grid-cols-2 gap-4">
<div className="p-4 rounded-sm border border-white/5 bg-[#150F1D]">
<h4 className="text-[10px] font-bold text-muted-foreground uppercase mb-2">AI Observation</h4>
<p className="text-sm">Your consistency is up 12% from last week. Keep this pace for optimal performance.</p>
</div>
<div className="p-4 rounded-sm border border-white/5 bg-[#150F1D]">
<h4 className="text-[10px] font-bold text-muted-foreground uppercase mb-2">Recommendation</h4>
<p className="text-sm">Try to reach your goal by increasing focus in the evening blocks.</p>
</div>
</div>
</DialogContent>
</Dialog>
</div>
);
}
function WidgetCard({ title, icon: Icon, value, unit, goal, data, onExpand }: any) {
return (
<div className="rounded-sm border border-white/5 bg-[#0A0710] p-6 h-full flex flex-col justify-between group relative">
<div className="absolute top-2 right-2 opacity-0 group-hover:opacity-100 transition-opacity flex gap-1">
<button onClick={onExpand} className="p-1 hover:bg-white/5 rounded-sm transition-colors">
<Maximize2 className="h-3 w-3 text-muted-foreground" />
</button>
<div className="p-1 hover:bg-white/5 rounded-sm cursor-grab active:cursor-grabbing">
<GripVertical className="h-3 w-3 text-muted-foreground" />
</div>
</div>
<div className="flex justify-between items-start mb-6">
<h3 className="text-xs font-semibold uppercase tracking-wider text-muted-foreground">{title}</h3>
<Icon className="h-4 w-4 text-primary" />
</div>
<div>
<div className="flex items-baseline gap-1 mb-6">
<span className="text-4xl font-bold">{value}</span>
<span className="text-[10px] text-muted-foreground tracking-wider">{unit}</span>
</div>
<div className="h-[80px] w-full">
<ResponsiveContainer width="100%" height="100%">
<BarChart data={data} margin={{ top: 0, right: 0, bottom: 0, left: 0 }}>
<XAxis dataKey="day" hide />
<Tooltip cursor={{ fill: '#ffffff05' }} contentStyle={{ backgroundColor: "#1F172B", border: "none", fontSize: "12px" }} />
<Bar dataKey="value" fill="#6C5BB0" radius={[2, 2, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</div>
<div className="mt-4 pt-4 border-t border-white/5 text-[11px] text-primary">Goal: {goal}</div>
</div>
</div> </div>
); );
} }
@@ -0,0 +1,122 @@
"use client";
import { motion, AnimatePresence } from "framer-motion";
import { X, PenTool, Target, CheckSquare2, Calendar, Coffee, Zap, Moon } from "lucide-react";
interface QuickActionsSheetProps {
isOpen: boolean;
onClose: () => void;
}
export function QuickActionsSheet({ isOpen, onClose }: QuickActionsSheetProps) {
return (
<AnimatePresence>
{isOpen && (
<>
{/* Backdrop */}
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
onClick={onClose}
className="fixed inset-0 bg-black/60 backdrop-blur-sm z-[100]"
/>
{/* Sheet Content */}
<motion.div
initial={{ x: "100%" }}
animate={{ x: 0 }}
exit={{ x: "100%" }}
transition={{ type: "spring", damping: 25, stiffness: 200 }}
className="fixed top-0 right-0 h-full w-full max-w-md bg-[#0A0710] border-l border-white/5 z-[101] shadow-2xl flex flex-col"
>
{/* Header */}
<div className="p-6 border-b border-white/5 flex items-center justify-between">
<div>
<h2 className="text-xl font-bold text-foreground">Quick Actions</h2>
<p className="text-sm text-muted-foreground">Add new entries to your workspace</p>
</div>
<button
onClick={onClose}
className="p-2 hover:bg-white/5 rounded-sm transition-colors text-muted-foreground hover:text-foreground"
>
<X className="h-5 w-5" />
</button>
</div>
{/* Action Grid */}
<div className="flex-1 overflow-y-auto p-6 space-y-8">
<div>
<h3 className="text-[10px] font-bold uppercase tracking-widest text-primary mb-4">Core Actions</h3>
<div className="grid grid-cols-2 gap-4">
{[
{ icon: PenTool, label: "New Journal", color: "text-purple-400", bg: "bg-purple-500/10" },
{ icon: Target, label: "Set Habit", color: "text-blue-400", bg: "bg-blue-500/10" },
{ icon: CheckSquare2, label: "New Goal", color: "text-emerald-400", bg: "bg-emerald-500/10" },
{ icon: Calendar, label: "Schedule", color: "text-orange-400", bg: "bg-orange-500/10" },
].map((item, idx) => (
<button
key={idx}
className="flex flex-col items-center justify-center p-6 rounded-sm border border-white/5 bg-[#150F1D] hover:border-primary/50 transition-all group"
>
<div className={`p-3 rounded-full ${item.bg} ${item.color} mb-3 group-hover:scale-110 transition-transform`}>
<item.icon className="h-6 w-6" />
</div>
<span className="text-sm font-medium">{item.label}</span>
</button>
))}
</div>
</div>
<div>
<h3 className="text-[10px] font-bold uppercase tracking-widest text-primary mb-4">Quick Logs</h3>
<div className="space-y-3">
{[
{ icon: Coffee, label: "Log Coffee", value: "+1 Cup" },
{ icon: Zap, label: "Energy Level", value: "8/10" },
{ icon: Moon, label: "Sleep Quality", value: "Great" },
].map((item, idx) => (
<button
key={idx}
className="w-full flex items-center justify-between p-4 rounded-sm border border-white/5 bg-[#150F1D] hover:bg-white/5 transition-colors"
>
<div className="flex items-center gap-3">
<item.icon className="h-5 w-5 text-muted-foreground" />
<span className="text-sm font-medium">{item.label}</span>
</div>
<span className="text-xs font-bold text-primary">{item.value}</span>
</button>
))}
</div>
</div>
{/* Form Input Sample */}
<div className="pt-4 border-t border-white/5">
<h3 className="text-[10px] font-bold uppercase tracking-widest text-primary mb-4">Quick Task</h3>
<div className="space-y-4">
<div className="space-y-2">
<input
type="text"
placeholder="Task title..."
className="w-full bg-[#150F1D] border border-white/10 rounded-sm px-4 py-3 text-sm outline-none focus:border-primary/50 transition-colors"
/>
</div>
<button className="w-full bg-primary hover:bg-primary/90 text-primary-foreground py-3 rounded-sm text-sm font-bold shadow-lg shadow-primary/20 transition-all active:scale-[0.98]">
CREATE TASK
</button>
</div>
</div>
</div>
{/* Footer */}
<div className="p-6 border-t border-white/5 bg-[#0F0B15]/50">
<p className="text-[10px] text-center text-muted-foreground uppercase tracking-widest">
AI Assistant is ready to help with any of these actions
</p>
</div>
</motion.div>
</>
)}
</AnimatePresence>
);
}