import { Container } from "@/components/container"; import { Prose } from "@/components/prose"; 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)}
); }