import { rootAuthLoader } from "@clerk/remix/ssr.server"; import { ClerkApp, ClerkErrorBoundary } from "@clerk/remix"; import type { LinksFunction, LoaderFunction, MetaFunction, } from "@remix-run/node"; import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration, } from "@remix-run/react"; import stylesheet from "~/tailwind.css"; import Footer from "./components/Footer"; import Header from "./components/Header"; export const links: LinksFunction = () => [ { rel: "stylesheet", href: stylesheet }, ]; export const meta: MetaFunction = () => { return [ { title: "Sprint Padawan" }, { name: "description", content: "Plan. Sprint. Repeat." }, ]; }; export const loader: LoaderFunction = (args) => rootAuthLoader(args); export const ErrorBoundary = ClerkErrorBoundary(); function App() { return (