import { api } from "@/lib/api/server"; export default async function Home() { const { data: health } = await api.health.get(); return (

Hackathon Template

{JSON.stringify(health, null, 2)}
); }