'use client'; import Link from 'next/link'; import { useTheme } from '@/components/theme-provider'; import { useAuth } from '@/lib/auth-context'; export default function Footer() { const { theme, toggleTheme } = useTheme(); const { isAuthenticated } = useAuth(); return (
); }