Skip to content

Commit 85b6c24

Browse files
committed
Make footer smaller + remove links to social media from the footer
1 parent e40fcc9 commit 85b6c24

File tree

1 file changed

+11
-44
lines changed

1 file changed

+11
-44
lines changed

src/components/footer.astro

Lines changed: 11 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ 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-16 lg:grid grid-cols-2 px-6 gap-60"
13+
class="max-w-4xl lg:max-w-6xl mx-auto py-6 px-4 text-sm lg:grid grid-cols-2 gap-12"
1414
>
1515
<div>
16-
<nav class="mb-12">
17-
<h6 class="font-bold text-xl mb-6">Quicklinks</h6>
16+
<nav class="mb-8">
17+
<h6 class="font-bold text-xs uppercase tracking-widest mb-4 text-gray-300">
18+
Quicklinks
19+
</h6>
1820

1921
{
2022
links.footer.map((item) => (
2123
<li class="list-none">
2224
<a
2325
href={item.path}
24-
class="block font-bold text-4xl md:text-5xl mb-4 hover:text-primary-hover"
26+
class="block text-sm mb-2 hover:text-primary-hover"
2527
>
2628
{item.name}
2729
{item.path.startsWith("http") ? <span> ↗</span> : null}
@@ -33,13 +35,13 @@ const gitVersion = import.meta.env.GIT_VERSION;
3335
</div>
3436

3537
<article
36-
class="flex flex-col lg:flex-row self-center gap-8 lg:gap-12 justify-end"
38+
class="flex flex-col lg:flex-row self-center gap-6 justify-end"
3739
>
3840
<div>
39-
<EPSLogo className="max-w-[200px] h-auto w-full" />
41+
<EPSLogo className="max-w-[160px] h-auto w-full" />
4042
</div>
4143
<div>
42-
<address class="not-italic mb-4">
44+
<address class="not-italic mb-2 leading-relaxed text-xs">
4345
EuroPython Society (EPS)
4446
<br />Ramnebacken 45
4547
<br />
@@ -48,61 +50,26 @@ const gitVersion = import.meta.env.GIT_VERSION;
4850
Sweden
4951
</address>
5052

51-
<p class="mb-4">
53+
<p class="mb-2 text-xs">
5254
<a
5355
class="underline whitespace-nowrap"
5456
href="https://europython-society.org"
5557
>
5658
europython-society.org <span> ↗</span>
5759
</a>
58-
<a
59-
class="underline whitespace-nowrap"
60-
href="https://blog.europython.eu"
61-
>
62-
blog.europython.eu <span> ↗</span>
63-
</a>
64-
<br />
65-
<a
66-
class="underline whitespace-nowrap"
67-
href="https://fosstodon.org/@europython"
68-
>
69-
fosstodon.org/@europython <span> ↗</span>
70-
</a>
71-
<br />
72-
<a
73-
class="underline whitespace-nowrap"
74-
href="https://linkedin.com/company/europython"
75-
>
76-
linkedin.com/company/europython <span> ↗</span>
77-
</a>
78-
<br />
79-
<a
80-
class="underline whitespace-nowrap"
81-
href="https://bsky.app/profile/europython.eu"
82-
>
83-
bsky.app/profile/europython.eu <span> ↗</span>
84-
</a>
8560
<br />
8661
<a
8762
class="underline whitespace-nowrap"
8863
href="https://github.com/europython"
8964
>
9065
github.com/europython <span> ↗</span>
9166
</a>
92-
<br />
93-
<a
94-
class="underline whitespace-nowrap"
95-
href="https://twitter.com/europython"
96-
>
97-
twitter.com/europython <span> ↗</span>
98-
</a>
9967
</p>
10068

101-
<p class="mb-4" style="color: rgba(255, 255, 255, 0.4)">
69+
<p class="mb-2 text-[10px] text-white/40">
10270
version: {gitVersion} @ {buildTimestamp}
10371
</p>
10472
</div>
10573
</article>
106-
10774
</footer>
10875
</Fullbleed>

0 commit comments

Comments
 (0)