import type { MetaFunction, LinksFunction } from "remix" import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "remix" import tailwindCss from "./tailwind.css" export const meta: MetaFunction = () => { return { title: "New Remix App" } } export const links: LinksFunction = () => [ { rel: "stylesheet", href: tailwindCss }, ] export default function App() { return (