import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { useAuth } from "@/hooks/useAuth"; import { Search, Settings } from "lucide-react"; import MainContent from "@/components/MainContent"; export default function Home() { const { user } = useAuth(); const handleLogout = () => { window.location.href = "/api/logout"; }; const handleAdminPage = () => { window.location.href = "/admin"; }; return (
Nostra