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

@@ -1,3 +1,4 @@
import clsx from "clsx"
import type { LoaderFunction } from "remix"
import { Link, Outlet, useLoaderData } from "remix"
import { HeaderLayout } from "~/components/header-layout"
@@ -32,7 +33,7 @@ export default function Docs() {
</SideNav>
}
body={
<section className={docsProseClass}>
<section className={clsx(docsProseClass, "pb-8")}>
<Outlet />
</section>
}