Skip to content

Commit ea928d5

Browse files
committed
feat: make the page heading a bit prettier
1 parent 2ef47bd commit ea928d5

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

src/pages/index.astro

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,26 @@ const releases = await getAnalyzedReleases();
88

99
<Layout title="Next.js Sentinel">
1010
<main class="container mx-auto px-4 py-8">
11-
<h1 class="text-6xl font-extrabold text-center mb-16 text-primary">
12-
Next.js Sentinel
13-
</h1>
11+
<div class="flex flex-col items-center mb-16">
12+
<svg
13+
class="w-24 h-24 mb-4"
14+
viewBox="0 0 100 100"
15+
xmlns="http://www.w3.org/2000/svg"
16+
>
17+
<polygon
18+
points="50,10 10,90 90,90"
19+
fill="none"
20+
stroke="currentColor"
21+
stroke-width="8"></polygon>
22+
<circle cx="35" cy="55" r="12" fill="currentColor"></circle>
23+
<circle cx="65" cy="55" r="12" fill="currentColor"></circle>
24+
</svg>
25+
<h1
26+
class="text-6xl font-extrabold text-center text-primary bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent drop-shadow-lg"
27+
>
28+
Next.js Sentinel
29+
</h1>
30+
</div>
1431
<div class="space-y-12">
1532
{
1633
releases.map((release) => (

0 commit comments

Comments
 (0)