All checks were successful
Deploy to Netlify / Deploy to Netlify (push) Successful in 1m39s
105 lines
2.8 KiB
TypeScript
105 lines
2.8 KiB
TypeScript
import {
|
|
isRouteErrorResponse,
|
|
Links,
|
|
Meta,
|
|
Outlet,
|
|
Scripts,
|
|
ScrollRestoration,
|
|
} from "react-router";
|
|
|
|
import type { Route } from "./+types/root";
|
|
import "./app.css";
|
|
import { QueryClientProvider } from "@tanstack/react-query";
|
|
import queryClient from "~/lib/client";
|
|
import Toaster from "~/components/ui/sonner";
|
|
import { ThemeProvider } from "./components/theme-provider";
|
|
|
|
export const links: Route.LinksFunction = () => [
|
|
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
|
|
{
|
|
rel: "preconnect",
|
|
href: "https://fonts.gstatic.com",
|
|
crossOrigin: "anonymous",
|
|
},
|
|
{
|
|
rel: "stylesheet",
|
|
href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap",
|
|
},
|
|
];
|
|
|
|
export function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
{/* Favicon */}
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href="/favicon-96x96.png"
|
|
sizes="96x96"
|
|
/>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="/apple-touch-icon.png"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{/* PWA Manifest */}
|
|
<meta name="theme-color" content="#ffffff" />
|
|
<meta name="title" content="Khollisé ⚔️" />
|
|
<meta
|
|
name="description"
|
|
content="BJColle but faster, better and prettier ⚡️"
|
|
/>
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<script src="/registerSW.js"></script>
|
|
<Meta />
|
|
<Links />
|
|
</head>
|
|
<body>
|
|
<QueryClientProvider client={queryClient}>
|
|
<ThemeProvider>{children}</ThemeProvider>
|
|
</QueryClientProvider>
|
|
<Toaster />
|
|
<ScrollRestoration />
|
|
<Scripts />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
|
|
export default function App() {
|
|
return <Outlet />;
|
|
}
|
|
|
|
export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
|
|
let message = "Ooups!";
|
|
let details = "Une erreur est survenue.";
|
|
let stack: string | undefined;
|
|
|
|
if (isRouteErrorResponse(error)) {
|
|
message = error.status === 404 ? "404" : "Erreur";
|
|
details =
|
|
error.status === 404
|
|
? "La page que vous cherchez n'existe pas."
|
|
: error.statusText || details;
|
|
} else if (import.meta.env.DEV && error && error instanceof Error) {
|
|
details = error.message;
|
|
stack = error.stack;
|
|
}
|
|
|
|
return (
|
|
<main className="pt-16 p-4 container mx-auto">
|
|
<h1>{message}</h1>
|
|
<p>{details}</p>
|
|
{stack && (
|
|
<pre className="w-full p-4 overflow-x-auto">
|
|
<code>{stack}</code>
|
|
</pre>
|
|
)}
|
|
</main>
|
|
);
|
|
}
|