Add WatchLink app icon
This commit is contained in:
BIN
public/apple-touch-icon.png
Normal file
BIN
public/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
BIN
public/favicon-16x16.png
Normal file
BIN
public/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 752 B |
BIN
public/favicon-32x32.png
Normal file
BIN
public/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
BIN
public/watchlink-icon-64.png
Normal file
BIN
public/watchlink-icon-64.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.9 KiB |
BIN
public/watchlink-icon.png
Normal file
BIN
public/watchlink-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 234 KiB |
@@ -80,8 +80,12 @@ select {
|
|||||||
height: 34px;
|
height: 34px;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background: color-mix(in srgb, var(--accent) 18%, transparent);
|
background: #05070a;
|
||||||
color: var(--accent);
|
background-image: url("/watchlink-icon-64.png");
|
||||||
|
background-position: center;
|
||||||
|
background-size: cover;
|
||||||
|
box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.22);
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-list {
|
.nav-list {
|
||||||
|
|||||||
@@ -3,7 +3,15 @@ import "./globals.css";
|
|||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "WatchLink",
|
title: "WatchLink",
|
||||||
description: "Persistent shared watch rooms for friends and teams."
|
description: "Persistent shared watch rooms for friends and teams.",
|
||||||
|
icons: {
|
||||||
|
icon: [
|
||||||
|
{ url: "/favicon-16x16.png", sizes: "16x16", type: "image/png" },
|
||||||
|
{ url: "/favicon-32x32.png", sizes: "32x32", type: "image/png" },
|
||||||
|
{ url: "/watchlink-icon.png", sizes: "512x512", type: "image/png" }
|
||||||
|
],
|
||||||
|
apple: [{ url: "/apple-touch-icon.png", sizes: "180x180", type: "image/png" }]
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ export function AppShell({
|
|||||||
<div className="app-shell">
|
<div className="app-shell">
|
||||||
<aside className="sidebar">
|
<aside className="sidebar">
|
||||||
<Link className="brand" href="/dashboard">
|
<Link className="brand" href="/dashboard">
|
||||||
<span className="brand-mark">WL</span>
|
<span className="brand-mark" aria-hidden="true" />
|
||||||
<span>WatchLink</span>
|
<span>WatchLink</span>
|
||||||
</Link>
|
</Link>
|
||||||
<nav className="nav-list" aria-label="Primary">
|
<nav className="nav-list" aria-label="Primary">
|
||||||
|
|||||||
Reference in New Issue
Block a user