Skip to content

Commit 938ae7c

Browse files
authored
feat: New logo (#9)
1 parent 4efa525 commit 938ae7c

9 files changed

Lines changed: 67 additions & 3 deletions

File tree

β€Žfrontend/public/.htaccessβ€Ž

Lines changed: 65 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,68 @@
55
RewriteCond %{REQUEST_FILENAME} !-f
66
RewriteCond %{REQUEST_FILENAME} !-d
77
RewriteRule . /index.html [L]
8-
</IfModule>
8+
</IfModule>
9+
10+
<IfModule mod_expires.c>
11+
ExpiresActive On
12+
ExpiresDefault "access plus 1 month"
13+
14+
# CSS
15+
16+
ExpiresByType text/css "access plus 1 year"
17+
18+
# Data interchange
19+
20+
ExpiresByType application/atom+xml "access plus 1 hour"
21+
ExpiresByType application/rdf+xml "access plus 1 hour"
22+
ExpiresByType application/rss+xml "access plus 1 hour"
23+
24+
ExpiresByType application/json "access plus 0 seconds"
25+
ExpiresByType application/ld+json "access plus 0 seconds"
26+
ExpiresByType application/schema+json "access plus 0 seconds"
27+
ExpiresByType application/vnd.geo+json "access plus 0 seconds"
28+
ExpiresByType application/xml "access plus 0 seconds"
29+
ExpiresByType text/xml "access plus 0 seconds"
30+
31+
32+
# Favicon (cannot be renamed!) and cursor images
33+
34+
ExpiresByType image/vnd.microsoft.icon "access plus 1 year"
35+
ExpiresByType image/x-icon "access plus 1 year"
36+
37+
# HTML
38+
39+
ExpiresByType text/html "access plus 0 seconds"
40+
41+
42+
# JavaScript
43+
44+
ExpiresByType application/javascript "access plus 1 year"
45+
ExpiresByType application/x-javascript "access plus 1 year"
46+
ExpiresByType text/javascript "access plus 1 year"
47+
48+
49+
# Manifest files
50+
51+
ExpiresByType application/manifest+json "access plus 1 week"
52+
ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
53+
ExpiresByType text/cache-manifest "access plus 0 seconds"
54+
55+
56+
# Media files
57+
58+
ExpiresByType audio/ogg "access plus 1 month"
59+
ExpiresByType image/bmp "access plus 1 month"
60+
ExpiresByType image/gif "access plus 1 month"
61+
ExpiresByType image/jpeg "access plus 1 month"
62+
ExpiresByType image/png "access plus 1 month"
63+
ExpiresByType image/svg+xml "access plus 1 month"
64+
ExpiresByType image/webp "access plus 1 month"
65+
ExpiresByType video/mp4 "access plus 1 month"
66+
ExpiresByType video/ogg "access plus 1 month"
67+
ExpiresByType video/webm "access plus 1 month"
68+
69+
<IfModule mod_headers.c>
70+
Header append Cache-Control "public"
71+
</IfModule>
72+
</IfModule>
-9.93 KB
Loading
-83.7 KB
Loading
-8.8 KB
Loading
-404 Bytes
Loading
-624 Bytes
Loading

β€Žfrontend/public/favicon.icoβ€Ž

-7.5 KB
Binary file not shown.

β€Žfrontend/public/logo.pngβ€Ž

-21 KB
Loading

β€Žfrontend/src/views/LoginPage.vueβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ const slackAuthUrl = buildSlackAuthUrl(params.slack);
1010
<div class="">
1111
<img
1212
src="/logo.png"
13-
class="w-32 mx-auto"
13+
class="w-32 mb-4 mx-auto rounded-full"
1414
/>
1515
<h1 class="text-center text-3xl font-bold mb-16">Gib Potato</h1>
1616
<a
1717
:href="slackAuthUrl"
18-
class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-amber-700 bg-amber-100 hover:bg-amber-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-amber-500"
18+
class="inline-flex items-center px-6 py-3 border border-transparent text-base font-semibold rounded-md text-amber-700 bg-amber-100 hover:bg-amber-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-amber-500"
1919
>
2020
Sign in with Slack
2121
</a>

0 commit comments

Comments
Β (0)