Start using react-zen.

This commit is contained in:
Mike Cao 2025-02-12 23:34:27 -08:00
parent 020cfdc646
commit 71e4f8f49b
24 changed files with 1872 additions and 609 deletions

View file

@ -0,0 +1,3 @@
export default function BoardsPage() {
return <h1>hi.</h1>;
}

View file

@ -0,0 +1,10 @@
import BoardsPage from './BoardsPage';
import { Metadata } from 'next';
export default function () {
return <BoardsPage />;
}
export const metadata: Metadata = {
title: 'Boards',
};