cc
This commit is contained in:
parent
33137c5e66
commit
262d712938
4 changed files with 15 additions and 10 deletions
5
assets/logo.svg
Normal file
5
assets/logo.svg
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="14.75 14.75 70.5 70.5" >
|
||||||
|
<g fill="white" >
|
||||||
|
<path d="M38.25 14.75H85.25V61.75H61.75V38.25H38.25ZM14.75 38.25H38.25V61.75H61.75V85.25H14.75Z" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 237 B |
14
index.html
14
index.html
|
|
@ -10,9 +10,9 @@
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||||
<meta name="apple-mobile-web-app-title" content="Monochrome">
|
<meta name="apple-mobile-web-app-title" content="Monochrome">
|
||||||
<meta name="description" content="A minimalist music streaming application">
|
<meta name="description" content="A minimalist music streaming application">
|
||||||
<link rel="apple-touch-icon" href="https://prigoana.com/favicon.png">
|
<link rel="apple-touch-icon" href="assets/logo.svg">
|
||||||
<link rel="manifest" href="/manifest.json">
|
<link rel="manifest" href="/manifest.json">
|
||||||
<link rel="icon" href="https://prigoana.com/favicon.png" type="image/png">
|
<link rel="icon" href="./assets/logo.svg" type="image/svg+xml">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||||||
|
|
@ -41,11 +41,11 @@
|
||||||
<aside class="sidebar">
|
<aside class="sidebar">
|
||||||
<div>
|
<div>
|
||||||
<div class="sidebar-logo">
|
<div class="sidebar-logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="14.75 14.75 70.5 70.5" >
|
||||||
<path d="M9 18V5l12-2v13"></path>
|
<g fill="white" >
|
||||||
<circle cx="6" cy="18" r="3"></circle>
|
<path d="M38.25 14.75H85.25V61.75H61.75V38.25H38.25ZM14.75 38.25H38.25V61.75H61.75V85.25H14.75Z" />
|
||||||
<circle cx="18" cy="16" r="3"></circle>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
<span>Monochrome</span>
|
<span>Monochrome</span>
|
||||||
</div>
|
</div>
|
||||||
<nav class="sidebar-nav">
|
<nav class="sidebar-nav">
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
export const apiSettings = {
|
export const apiSettings = {
|
||||||
STORAGE_KEY: 'monochrome-api-instances',
|
STORAGE_KEY: 'monochrome-api-instances',
|
||||||
defaultInstances: [
|
defaultInstances: [
|
||||||
'https://api.monochrome.prigoana.com',
|
'https://hifi.prigoana.com',
|
||||||
'https://tidal.401658.xyz'
|
'https://tidal.401658.xyz'
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -104,8 +104,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-logo svg {
|
.sidebar-logo svg {
|
||||||
width: 24px;
|
width: 15px;
|
||||||
height: 24px;
|
height: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-nav ul {
|
.sidebar-nav ul {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue