Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ const buildTimestamp = __TIMESTAMP__;
const gitVersion = __GIT_VERSION__;
---

<div class="mt-auto">
<Fullbleed className="bg-primary text-white">
<footer
class="max-w-4xl lg:max-w-6xl mx-auto py-16 lg:grid grid-cols-2 px-6 gap-60"
<div
class="text-white max-w-4xl lg:max-w-6xl mx-auto py-10 lg:grid grid-cols-2 px-6 gap-60"
>
<div>
<nav class="mb-12">
Expand All @@ -34,7 +32,7 @@ const gitVersion = __GIT_VERSION__;
</nav>
</div>

<article
<div
class="flex flex-col lg:flex-row self-center gap-8 lg:gap-12 justify-end"
>
<div>
Expand Down Expand Up @@ -99,12 +97,9 @@ const gitVersion = __GIT_VERSION__;
twitter.com/europython <span> ↗</span>
</a>
</p>

<p class="mb-4" style="color: rgba(255, 255, 255, 0.4)">
version: {gitVersion} @ {buildTimestamp}
version: {gitVersion} @ {buildTimestamp}
</p>
</div>
</article>
</div>
</footer>
</Fullbleed>
</div>
2 changes: 2 additions & 0 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { promises as fs } from "fs";
import { NavItems } from "@components/nav-items";
import HeaderActions from "@components/header/header-actions.astro";
import HeaderLogo from "@components/header/header-logo.astro";
import Search from "@components/Search.astro";

import links from "../data/links.json";
---
Expand Down Expand Up @@ -54,4 +55,5 @@ import links from "../data/links.json";
/>
</nav>
</div>
<Search />
</header>
2 changes: 1 addition & 1 deletion src/components/card/card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { title, subtitle, url, image } = Astro.props;
---

<div
class="min-w-[250px] w-full md:w-[40%] lg:w-[30%] p-4 bg-[#D5D6E6] rounded-2xl text-center flex flex-col"
class="prose-xl min-w-[250px] w-full md:w-[40%] lg:w-[30%] p-4 bg-[#D5D6E6] rounded-2xl text-center flex flex-col"
>
<a href={url} class="block">
<div class="relative w-full">
Expand Down
14 changes: 0 additions & 14 deletions src/components/hero/hero.astro

This file was deleted.

Loading