atmo.rsvp
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

add favicon

Florian 2d6ef5fb cef2e1f7

+14 -3
+2 -2
src/app.html
··· 1 1 <!doctype html> 2 - <html lang="en"> 2 + <html lang="en" class="mist cyan"> 3 3 <head> 4 4 <meta charset="utf-8" /> 5 - <link rel="icon" href="%sveltekit.assets%/favicon.png" /> 5 + <link rel="icon" href="%sveltekit.assets%/favicon.svg" type="image/svg+xml" /> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1" /> 7 7 %sveltekit.head% 8 8 </head>
-1
src/routes/(app)/+layout.svelte
··· 103 103 104 104 <Head 105 105 title="atmo.rsvp" 106 - emojiFavicon="🗓️" 107 106 description="discover and attend events" 108 107 image={page.data?.ogImage ?? '/og.png'} 109 108 />
+12
static/favicon.svg
··· 1 + <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> 2 + <style> 3 + path { stroke: #090B0C; } 4 + @media (prefers-color-scheme: dark) { 5 + path { stroke: #F9FBFB; } 6 + } 7 + </style> 8 + <path d="M8 2V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> 9 + <path d="M16 2V6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> 10 + <path d="M19 4H5C3.89543 4 3 4.89543 3 6V20C3 21.1046 3.89543 22 5 22H19C20.1046 22 21 21.1046 21 20V6C21 4.89543 20.1046 4 19 4Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> 11 + <path d="M3 10H21" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> 12 + </svg>