Skip to content

Commit bd0f32d

Browse files
committed
feat(frontend): add slack screenshot + try to add favicon, fail for now
1 parent 167fbb2 commit bd0f32d

File tree

6 files changed

+26
-14
lines changed

6 files changed

+26
-14
lines changed

frontend/public/images/logo.png

18.3 KB
Loading

frontend/public/images/logo.webp

113 KB
Loading

frontend/public/images/logo2.png

8.05 KB
Loading
43.5 KB
Loading

frontend/src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { title } = Astro.props;
1212
<meta charset="UTF-8" />
1313
<meta name="description" content="Astro description" />
1414
<meta name="viewport" content="width=device-width" />
15-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
15+
<link rel="icon" type="image/svg+xml" href="/images/logo_2.png" />
1616
<meta name="generator" content={Astro.generator} />
1717
<title>{title}</title>
1818
</head>

frontend/src/pages/index.astro

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,6 @@ import MainLayout from '../layouts/MainLayout.astro';
1212
Monitor your services, APIs, and landing pages in one place. Get instant notifications when something goes wrong.
1313
</p>
1414

15-
<div class="relative mb-16 rounded-lg shadow-lg overflow-hidden max-w-3xl mx-auto">
16-
<div class="aspect-w-16 aspect-h-9">
17-
<img
18-
src="/images/dashboard-preview.png"
19-
alt="Dashboard Preview"
20-
class="w-full h-full object-cover rounded-lg"
21-
onerror="this.style.display='none'"
22-
loading="lazy"
23-
/>
24-
</div>
25-
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/20 to-transparent"></div>
26-
</div>
27-
2815
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
2916
<div class="p-6 bg-white rounded-lg shadow-sm transition duration-200 hover:shadow-md">
3017
<h3 class="text-lg font-semibold text-gray-900 mb-3">Service Monitoring</h3>
@@ -56,5 +43,30 @@ import MainLayout from '../layouts/MainLayout.astro';
5643
Go to your dashboard
5744
</a>
5845
</div>
46+
<div class="relative mb-16 rounded-lg shadow-lg overflow-hidden max-w-3xl mx-auto">
47+
<div class="aspect-w-16 aspect-h-9">
48+
<img
49+
src="/images/dashboard-preview.png"
50+
alt="Dashboard Preview"
51+
class="w-full h-full object-cover rounded-lg"
52+
onerror="this.style.display='none'"
53+
loading="lazy"
54+
/>
55+
</div>
56+
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/20 to-transparent"></div>
57+
</div>
58+
<div class="relative mb-16 rounded-lg shadow-lg overflow-hidden max-w-sm mx-auto">
59+
<div class="aspect-w-16 aspect-h-9">
60+
<img
61+
src="/images/slack_notif.png"
62+
alt="Slack notification"
63+
class="w-full h-full object-cover rounded-lg"
64+
onerror="this.style.display='none'"
65+
loading="lazy"
66+
/>
67+
</div>
68+
<div class="absolute inset-0 bg-gradient-to-t from-gray-900/20 to-transparent"></div>
69+
</div>
70+
5971
</div>
6072
</MainLayout>

0 commit comments

Comments
 (0)