diff --git a/docs/app/root.tsx b/docs/app/root.tsx
index 975edc1f18..eeee770520 100644
--- a/docs/app/root.tsx
+++ b/docs/app/root.tsx
@@ -1,24 +1,23 @@
-import type { MetaFunction, LinksFunction } from "@remix-run/node";
+import type { MetaFunction, LinksFunction } from '@vercel/remix'
import {
Links,
- LiveReload,
Meta,
Outlet,
Scripts,
ScrollRestoration,
-} from "@remix-run/react";
-import { Analytics } from "@vercel/analytics/react";
-import styles from "./styles.css";
+} from '@remix-run/react'
+import { Analytics } from '@vercel/analytics/react'
+import styles from './styles.css'
export const meta: MetaFunction = () => [
{
- charset: "utf-8",
- title: "Blog | Kitchen Sink",
- viewport: "width=device-width,initial-scale=1",
+ charset: 'utf-8',
+ title: 'Blog | Kitchen Sink',
+ viewport: 'width=device-width,initial-scale=1',
},
-];
+]
-export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }];
+export const links: LinksFunction = () => [{ rel: 'stylesheet', href: styles }]
export default function App(): JSX.Element {
return (
@@ -31,9 +30,8 @@ export default function App(): JSX.Element {
-