hackathon-template/app/page.tsx

16 lines
397 B
TypeScript

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 (
<Container>
<Prose>
<h1>Hackathon Template</h1>
<pre>{JSON.stringify(health, null, 2)}</pre>
</Prose>
</Container>
);
}