"use client"; import { Button } from "@/components/ui/button"; import { RiTelegram2Line } from "react-icons/ri"; import Link from "next/link"; import { useAuth } from "@/contexts/auth-context"; export function HeaderAuth() { const { isAuthenticated, loading } = useAuth(); if (loading) { return (
); } if (isAuthenticated) { return null; } return ( ); }