import PostList from "../islands/post-list.tsx"; import { Title } from "../components/typography.tsx"; import { getPosts } from "../lib/api.ts"; import { Layout } from "../islands/layout.tsx"; export const dynamic = "force-static"; export const revalidate = 3600; // 1 hour export default async function Home() { const posts = await getPosts(); return (
Knotbin
); }