()
| 4 | import './app.css'; |
| 5 | |
| 6 | export const links: Route.LinksFunction = () => [ |
| 7 | { rel: 'preconnect', href: 'https://fonts.googleapis.com' }, |
| 8 | { |
| 9 | rel: 'preconnect', |
| 10 | href: 'https://fonts.gstatic.com', |
| 11 | crossOrigin: 'anonymous', |
| 12 | }, |
| 13 | { |
| 14 | rel: 'stylesheet', |
| 15 | href: 'https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap', |
| 16 | }, |
| 17 | ]; |
| 18 | |
| 19 | export function Layout({ children }: { children: React.ReactNode }) { |
| 20 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected