diff --git a/app/components/navbar.tsx b/app/components/navbar.tsx index d6bce77..b582ff9 100644 --- a/app/components/navbar.tsx +++ b/app/components/navbar.tsx @@ -28,8 +28,8 @@ export function Navbar({ isAdmin }: NavbarProps) {
{/* Logo */} - - Brackt + + Brackt {/* Desktop Navigation */} diff --git a/app/root.tsx b/app/root.tsx index ae5daa3..8c0d1fe 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -34,6 +34,11 @@ export async function loader(args: Route.LoaderArgs) { } export const links: Route.LinksFunction = () => [ + { rel: "icon", href: "/favicon.ico", sizes: "48x48" }, + { rel: "icon", href: "/favicon.svg", type: "image/svg+xml" }, + { rel: "icon", href: "/favicon-96x96.png", type: "image/png", sizes: "96x96" }, + { rel: "apple-touch-icon", href: "/apple-touch-icon.png" }, + { rel: "manifest", href: "/site.webmanifest" }, { rel: "preconnect", href: "https://fonts.googleapis.com" }, { rel: "preconnect", @@ -122,8 +127,8 @@ export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
- - Brackt + + Brackt
diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..b047276 Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon-96x96.png b/public/favicon-96x96.png new file mode 100644 index 0000000..5c96732 Binary files /dev/null and b/public/favicon-96x96.png differ diff --git a/public/favicon.ico b/public/favicon.ico index 5dbdfcd..e6ffcef 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..b54c356 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/logo.svg b/public/logo.svg new file mode 100644 index 0000000..a5e1a54 --- /dev/null +++ b/public/logo.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..ccf313a --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,21 @@ +{ + "name": "MyWebSite", + "short_name": "MySite", + "icons": [ + { + "src": "/web-app-manifest-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/web-app-manifest-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file diff --git a/public/web-app-manifest-192x192.png b/public/web-app-manifest-192x192.png new file mode 100644 index 0000000..d9eba2b Binary files /dev/null and b/public/web-app-manifest-192x192.png differ diff --git a/public/web-app-manifest-512x512.png b/public/web-app-manifest-512x512.png new file mode 100644 index 0000000..9093a20 Binary files /dev/null and b/public/web-app-manifest-512x512.png differ