mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-05 08:33:10 +00:00
14 lines
460 B
TypeScript
14 lines
460 B
TypeScript
import { Link, Meta } from "@solidjs/meta"
|
|
|
|
export const Favicon = () => {
|
|
return (
|
|
<>
|
|
<Link rel="icon" type="image/png" href="/favicon-96x96-v2.png" sizes="96x96" />
|
|
<Link rel="shortcut icon" href="/favicon-v2.ico" />
|
|
<Link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-v2.png" />
|
|
<Link rel="manifest" href="/site.webmanifest" />
|
|
<Meta name="apple-mobile-web-app-title" content="OpenCode" />
|
|
</>
|
|
)
|
|
}
|