Skip to content

Commit

Permalink
some renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
mono424 committed May 11, 2024
1 parent 1c9c7c4 commit 903c60c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions apps/dashboard/src/app/notion/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import CrawledPagesTable from "@/components/crawled-pages-table/crawled-pages-table";

export default function Home() {
return (
<main className="h-[100vh]">
<div className="flex items-center justify-center mt-7">
<h1 className="text-3xl font-bold text-center text-gray-900">Notion</h1>
</div>
<div className="flex justify-center gap-4 mx-7 mt-7">
<div className="w-full max-w-[950px] relative">
<CrawledPagesTable />
</div>
</div>
</main>
);
}

0 comments on commit 903c60c

Please sign in to comment.