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 = () => { return { title: "New Remix App" } } export const links: LinksFunction = () => [ { rel: "stylesheet", href: prismThemeCss }, { rel: "stylesheet", href: "/tailwind.css" }, ] export default function App() { return (