'use client'; import React from 'react'; import { useSession } from '@/context/SessionContext'; import { GlassWater, Square, ArrowRight, Sparkles } from 'lucide-react'; import Link from 'next/link'; import { useI18n } from '@/i18n/I18nContext'; import { motion, AnimatePresence } from 'framer-motion'; export default function ActiveSessionBanner() { const { activeSession, setActiveSession } = useSession(); const { t } = useI18n(); return ( {activeSession && (
{/* Session Info Link */}
Live

{t('session.activeSession')}

{activeSession.name}

{/* Action Buttons */}
)} ); }