diff --git a/website/app/root.tsx b/website/app/root.tsx index ad9ec36..838bd9d 100644 --- a/website/app/root.tsx +++ b/website/app/root.tsx @@ -4,34 +4,35 @@ import { Links, Meta, Outlet, Scripts, ScrollRestoration } from '@remix-run/reac import './index.css' export const links: LinksFunction = () => { - return [ - { 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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap', - }, - ] + return [ + { 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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap', + }, + ] } export default function App() { - return ( - - - - - - - - - - - - - - ) + return ( + + + + + + + + + + + + + + + ) }