()
| 11 | import "./app.css"; |
| 12 | |
| 13 | export const links: Route.LinksFunction = () => [ |
| 14 | { rel: "preconnect", href: "https://fonts.googleapis.com" }, |
| 15 | { |
| 16 | rel: "preconnect", |
| 17 | href: "https://fonts.gstatic.com", |
| 18 | crossOrigin: "anonymous", |
| 19 | }, |
| 20 | { |
| 21 | rel: "stylesheet", |
| 22 | href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap", |
| 23 | }, |
| 24 | ]; |
| 25 | |
| 26 | export function Layout({ children }: { children: React.ReactNode }) { |
| 27 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…