MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / links

Function links

examples/remix/app/root.tsx:11–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9import "./tailwind.css";
10
11export const links: LinksFunction = () => [
12 { rel: "preconnect", href: "https://fonts.googleapis.com" },
13 {
14 rel: "preconnect",
15 href: "https://fonts.gstatic.com",
16 crossOrigin: "anonymous",
17 },
18 {
19 rel: "stylesheet",
20 href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap",
21 },
22];
23
24function Layout({ children }: { children: React.ReactNode }) {
25 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected