import codeHikeStyle from "@code-hike/mdx/dist/index.css"; import type { LinksFunction, MetaFunction } from "@remix-run/node"; import { Link, Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import stylesheet from "~/tailwind.css"; export const links: LinksFunction = () => [ { rel: "stylesheet", href: stylesheet }, { rel: "stylesheet", href: codeHikeStyle }, ]; export const meta: MetaFunction = () => ({ charset: "utf-8", title: "nullndr", viewport: "width=device-width,initial-scale=1", }); export default function App() { return (