diff --git a/.gitignore b/.gitignore
index 3f7bf98..e34d806 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
node_modules
+.react-router/
/.cache
/build
/public/build
diff --git a/src/root.tsx b/app/root.tsx
similarity index 85%
rename from src/root.tsx
rename to app/root.tsx
index f48864e..43472ff 100644
--- a/src/root.tsx
+++ b/app/root.tsx
@@ -1,14 +1,6 @@
-import { cssBundleHref } from '@remix-run/css-bundle'
-import type { LinksFunction, MetaFunction } from '@remix-run/node'
-import {
- Links,
- LiveReload,
- Meta,
- Outlet,
- Scripts,
- ScrollRestoration,
-} from '@remix-run/react'
-import styles from './styles/index.css'
+import type { LinksFunction, MetaFunction } from 'react-router'
+import { Links, Meta, Outlet, Scripts, ScrollRestoration } from 'react-router'
+import stylesUrl from './styles/tailwind.css?url'
import { getSiteUrl } from './services/url.ts'
import logoBlackIcoPath from '~/private/images/logo-black.ico'
import logoWhiteIcoPath from '~/private/images/logo-white.ico'
@@ -30,7 +22,6 @@ const App = () => (
-