Skip to content

Commit

Permalink
fix: Add goose favicon to extensions site (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-w-nick authored Feb 11, 2025
1 parent fdcf374 commit 48c9321
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file added extensions-site/app/assets/favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions extensions-site/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand All @@ -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 }) {
Expand Down

0 comments on commit 48c9321

Please sign in to comment.