import { LinksFunction } from '@remix-run/node' import { Link, Links, Meta, Outlet, Scripts, ScrollRestoration } from '@remix-run/react' import stylesheet from '~/tailwind.css?url' import { PropsWithChildren } from 'react' export const links: LinksFunction = () => [{ rel: 'stylesheet', href: stylesheet }] export function Layout({ children }: PropsWithChildren) { return (