* feat: add type and sourceId columns to board schema * chore: update _journal and add snapshot * feat: scaffold templates page * feat: add template pages * feat: add template card page * feat: add template view indicator * fix: ensure checklists default to empty array in board view * feat: create template from board * feat: show custom templates in new board form * feat: create card activity from snapshot creation * chore: update readme and features * chore: add translations
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
import type { NextPageWithLayout } from "~/pages/_app";
|
|
import { getDashboardLayout } from "~/components/Dashboard";
|
|
import Popup from "~/components/Popup";
|
|
import BoardsView from "~/views/boards";
|
|
|
|
const TemplatesPage: NextPageWithLayout = () => {
|
|
return (
|
|
<>
|
|
<BoardsView isTemplate />
|
|
<Popup />
|
|
</>
|
|
);
|
|
};
|
|
|
|
TemplatesPage.getLayout = (page) => getDashboardLayout(page);
|
|
|
|
export default TemplatesPage;
|