import { Links, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import stylesheet from "./tailwind.css?url"; import type { LinksFunction } from "@remix-run/node"; // Supports weights 200-800 import '@fontsource-variable/manrope'; import {Refine} from "@refinedev/core"; import {PortalAuthProvider} from "~/data/auth-provider.js"; import routerProvider from "@refinedev/remix-router"; export const links: LinksFunction = () => [ { rel: "stylesheet", href: stylesheet }, ]; export function Layout({children}: { children: React.ReactNode }) { return ( {children} ); } export default function App() { return ( ); } export function HydrateFallback() { return

Loading...

; }