initial index

This commit is contained in:
41666 2023-05-22 21:04:29 -04:00
parent 62cc828d6a
commit 88015a98cd
21 changed files with 343 additions and 56 deletions

View file

@ -8,8 +8,13 @@ import {
Scripts,
ScrollRestoration,
} from "@remix-run/react";
import * as styles from "./root.css";
export const links: LinksFunction = () => [
{
rel: "stylesheet",
href: "https://unpkg.com/modern-css-reset@1.4.0/dist/reset.min.css",
},
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
];
@ -22,7 +27,7 @@ export default function App() {
<Meta />
<Links />
</head>
<body>
<body className={styles.root}>
<Outlet />
<ScrollRestoration />
<Scripts />