fix: Add goose favicon to extensions site (#955)

This commit is contained in:
nick-w-nick
2025-02-11 10:27:52 -05:00
committed by GitHub
parent fdcf374462
commit 48c93213f4
2 changed files with 2 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

+2
View File
@@ -10,6 +10,7 @@ import {
import type { Route } from "./+types/root";
import stylesheet from "./styles/main.css?url";
import { Header } from "./components/header";
import favicon from "./assets/favicon.ico?url";
export const links: Route.LinksFunction = () => [
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
@@ -23,6 +24,7 @@ export const links: Route.LinksFunction = () => [
href: "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap",
},
{ rel: "stylesheet", href: stylesheet },
{ rel: "icon", type: "image/x-icon", href: favicon },
];
export function Layout({ children }: { children: React.ReactNode }) {