initial getting started and sending messages pages

This commit is contained in:
MapleLeaf
2021-12-30 18:05:01 -06:00
parent 87578bc7e5
commit a8aca507a5
11 changed files with 134 additions and 37 deletions

View File

@@ -8,8 +8,8 @@ export function SideNav({
children: ReactNode
}) {
return (
<nav className="w-64 sticky top-0">
<h2 className="text-2xl mt-1">{heading}</h2>
<nav>
<h2 className="text-2xl">{heading}</h2>
<div className="mt-3 flex flex-col gap-2 items-start">{children}</div>
</nav>
)