()
| 14 | import 'virtual:uno.css'; |
| 15 | |
| 16 | export const links: LinksFunction = () => [ |
| 17 | { |
| 18 | rel: 'icon', |
| 19 | href: '/favicon.svg', |
| 20 | type: 'image/svg+xml', |
| 21 | }, |
| 22 | { rel: 'stylesheet', href: reactToastifyStyles }, |
| 23 | { rel: 'stylesheet', href: tailwindReset }, |
| 24 | { rel: 'stylesheet', href: globalStyles }, |
| 25 | { rel: 'stylesheet', href: xtermStyles }, |
| 26 | { |
| 27 | rel: 'preconnect', |
| 28 | href: 'https://fonts.googleapis.com', |
| 29 | }, |
| 30 | { |
| 31 | rel: 'preconnect', |
| 32 | href: 'https://fonts.gstatic.com', |
| 33 | crossOrigin: 'anonymous', |
| 34 | }, |
| 35 | { |
| 36 | rel: 'stylesheet', |
| 37 | href: 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap', |
| 38 | }, |
| 39 | ]; |
| 40 | |
| 41 | const inlineThemeCode = stripIndents` |
| 42 | setTutorialKitTheme(); |
nothing calls this directly
no outgoing calls
no test coverage detected