51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import packageJson from "reacord/package.json"
|
|
import type { LinksFunction, MetaFunction } from "remix"
|
|
import {
|
|
Links,
|
|
LiveReload,
|
|
Meta,
|
|
Outlet,
|
|
Scripts,
|
|
ScrollRestoration,
|
|
} from "remix"
|
|
import prismThemeCss from "./prism-theme.css"
|
|
|
|
export const meta: MetaFunction = () => ({
|
|
title: "Reacord",
|
|
description: packageJson.description,
|
|
})
|
|
|
|
export const links: LinksFunction = () => [
|
|
{ rel: "stylesheet", href: prismThemeCss },
|
|
{ rel: "stylesheet", href: "/tailwind.css" },
|
|
]
|
|
|
|
export default function App() {
|
|
return (
|
|
<html lang="en" className="bg-slate-900 text-slate-100">
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link
|
|
rel="preconnect"
|
|
href="https://fonts.gstatic.com"
|
|
crossOrigin=""
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&family=Rubik:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<Meta />
|
|
<Links />
|
|
</head>
|
|
<body>
|
|
<Outlet />
|
|
<ScrollRestoration />
|
|
<Scripts />
|
|
{process.env.NODE_ENV === "development" && <LiveReload />}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|