MCPcopy Create free account
hub / github.com/OpenPipe/OpenPipe / Favicon

Function Favicon

app/src/components/Favicon.tsx:3–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import Head from "next/head";
2
3export default function Favicon() {
4 return (
5 <Head>
6 <link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png" />
7 <link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png" />
8 <link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png" />
9 <link rel="manifest" href="/favicons/site.webmanifest" />
10 <link rel="shortcut icon" href="/favicons/favicon.ico" />
11 <link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#5bbad5" />
12 <meta name="msapplication-TileColor" content="#da532c" />
13 <meta name="theme-color" content="#ffffff" />
14 </Head>
15 );
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected