"use client" import Link from "next/link" import { Button } from "@/components/ui/button" import { useAuth } from "@/contexts/auth-context" export default function Home() { const { isAuthenticated, user } = useAuth() return (
{/* Navigation */}
{isAuthenticated ? ( <> Welcome, {user?.email} ) : ( <> )}
{/* Main Content */}

分布式流星监测网络

Distributed Meteor Monitoring Network

{!isAuthenticated && (
)}
) }