import type { LinksFunction } from "@remix-run/node"; import { Links, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import "./tailwind.css"; export const links: LinksFunction = () => { return [{ rel: "icon", href: "/favicon.svg" }]; }; export function Layout({ children }: { children: React.ReactNode }) { return (