()
| 1 | import Head from "next/head"; |
| 2 | |
| 3 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected