Skip to content

Commit fe6b3ad

Browse files
committed
Revert footer from this PR.
1 parent bf29a30 commit fe6b3ad

File tree

1 file changed

+57
-26
lines changed

1 file changed

+57
-26
lines changed

src/components/footer.astro

Lines changed: 57 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ const gitVersion = import.meta.env.GIT_VERSION;
1010

1111
<Fullbleed className="bg-primary text-white">
1212
<footer
13-
class="max-w-4xl lg:max-w-6xl mx-auto py-6 px-4 text-sm grid grid-cols-1 lg:grid-cols-2 gap-12 text-center lg:text-left"
13+
class="max-w-4xl lg:max-w-6xl mx-auto py-16 lg:grid grid-cols-2 px-6 gap-60"
1414
>
1515
<div>
16-
<nav class="mb-8">
17-
<h6 class="font-bold text-xs uppercase tracking-widest mb-4 text-gray-300">
18-
Quicklinks
19-
</h6>
16+
<nav class="mb-12">
17+
<h6 class="font-bold text-xl mb-6">Quicklinks</h6>
2018
<ul>
2119
{
2220
links.footer.map((item) => (
@@ -51,27 +49,60 @@ const gitVersion = import.meta.env.GIT_VERSION;
5149
Sweden
5250
</address>
5351

54-
<p class="mb-2 text-xs">
55-
<a
56-
class="underline whitespace-nowrap"
57-
href="https://europython-society.org"
58-
>
59-
europython-society.org <span> ↗</span>
60-
</a>
61-
<br />
62-
<a
63-
class="underline whitespace-nowrap"
64-
href="https://github.com/europython"
65-
>
66-
github.com/europython <span> ↗</span>
67-
</a>
68-
</p>
69-
70-
<p class="mb-2 text-[10px] text-white/40">
71-
version: {gitVersion} @ {buildTimestamp}
72-
</p>
73-
</div>
74-
</article>
52+
<p class="mb-4">
53+
<a
54+
class="underline whitespace-nowrap"
55+
href="https://europython-society.org"
56+
>
57+
europython-society.org <span> ↗</span>
58+
</a>
59+
<a
60+
class="underline whitespace-nowrap"
61+
href="https://blog.europython.eu"
62+
>
63+
blog.europython.eu <span> ↗</span>
64+
</a>
65+
<br />
66+
<a
67+
class="underline whitespace-nowrap"
68+
href="https://fosstodon.org/@europython"
69+
>
70+
fosstodon.org/@europython <span> ↗</span>
71+
</a>
72+
<br />
73+
<a
74+
class="underline whitespace-nowrap"
75+
href="https://linkedin.com/company/europython"
76+
>
77+
linkedin.com/company/europython <span> ↗</span>
78+
</a>
79+
<br />
80+
<a
81+
class="underline whitespace-nowrap"
82+
href="https://bsky.app/profile/europython.eu"
83+
>
84+
bsky.app/profile/europython.eu <span> ↗</span>
85+
</a>
86+
<br />
87+
<a
88+
class="underline whitespace-nowrap"
89+
href="https://github.com/europython"
90+
>
91+
github.com/europython <span> ↗</span>
92+
</a>
93+
<br />
94+
<a
95+
class="underline whitespace-nowrap"
96+
href="https://twitter.com/europython"
97+
>
98+
twitter.com/europython <span> ↗</span>
99+
</a>
100+
</p>
75101

102+
<p class="mb-4" style="color: rgba(255, 255, 255, 0.4)">
103+
version: {gitVersion} @ {buildTimestamp}
104+
</p>
105+
</div>
106+
</article>
76107
</footer>
77108
</Fullbleed>

0 commit comments

Comments
 (0)