Files
personal-website/packages/web/app/cokno/page.tsx

16 lines
456 B
TypeScript

export default async function Page() {
return (
<div className="flex flex-col items-center">
<h1 className="text-4xl my-5">The Collective Knowledge of Stan Runge</h1>
<p className="my-5">
<i>"The Collective Knowledge of Stan Runge"</i> (CoKno) is a project
designed to serve as a personal Zettelkast system, similiar to
Wikipedia.
</p>
<h2 className="text-2xl my-5">Topics { }</h2>
</div>
);
}