Skip to content

Commit ee80471

Browse files
committed
add contributors link
1 parent 94c5183 commit ee80471

File tree

1 file changed

+34
-6
lines changed

1 file changed

+34
-6
lines changed

src/layouts/Layout.astro

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,21 @@ const { title } = Astro.props;
2020
<header class="bg-blockchain-primary text-white">
2121
<nav class="container-base py-6">
2222
<div class="flex justify-between items-center">
23-
<a href="/" class="text-2xl font-bold hover:text-blockchain-accent transition-colors">
23+
<a
24+
href="/"
25+
class="text-2xl font-bold hover:text-blockchain-accent transition-colors"
26+
>
2427
Dresden Blockchain
2528
</a>
2629
<div class="flex gap-6">
27-
<a href="/blog" class="hover:text-blockchain-accent transition-colors">Blog</a>
28-
<a href="/about" class="hover:text-blockchain-accent transition-colors">About</a>
30+
<a
31+
href="/blog"
32+
class="hover:text-blockchain-accent transition-colors">Blog</a
33+
>
34+
<a
35+
href="/about"
36+
class="hover:text-blockchain-accent transition-colors">About</a
37+
>
2938
</div>
3039
</div>
3140
</nav>
@@ -47,20 +56,39 @@ const { title } = Astro.props;
4756
viewBox="0 0 20 20"
4857
fill="currentColor"
4958
>
50-
<path d="M5 3a1 1 0 000 2c5.523 0 10 4.477 10 10a1 1 0 102 0C17 8.373 11.627 3 5 3z"
59+
<path
60+
d="M5 3a1 1 0 000 2c5.523 0 10 4.477 10 10a1 1 0 102 0C17 8.373 11.627 3 5 3z"
5161
></path>
5262
<path
5363
d="M4 9a1 1 0 011-1 7 7 0 017 7 1 1 0 11-2 0 5 5 0 00-5-5 1 1 0 01-1-1zM3 15a2 2 0 114 0 2 2 0 01-4 0z"
5464
></path>
5565
</svg>
5666
RSS Feed abonnieren
5767
</a>
68+
69+
<a
70+
href="https://github.com/ddblock/ddblock.github.io"
71+
class="tag-base tag-light tag-hover inline-flex items-center gap-2 mt-4"
72+
target="_blank"
73+
rel="noopener noreferrer"
74+
>
75+
<svg
76+
xmlns="http://www.w3.org/2000/svg"
77+
class="h-5 w-5"
78+
viewBox="0 0 24 24"
79+
fill="currentColor"
80+
>
81+
<path
82+
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.652.242 2.873.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"
83+
></path>
84+
</svg>
85+
Contributors welcome
86+
</a>
5887
</div>
5988
</footer>
6089
</body>
6190
</html>
6291

6392
<style is:global>
64-
@import '../styles/shared.css';
93+
@import "../styles/shared.css";
6594
</style>
66-

0 commit comments

Comments
 (0)