Skip to content

Commit 8ccfc2a

Browse files
committed
style: update past events
1 parent b60dbf8 commit 8ccfc2a

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/pages/past-events.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from "react";
2+
import { homeBackground } from "../components/2025/cloudImages";
23

34
function PastEvents() {
45
const events = [
@@ -26,7 +27,6 @@ function PastEvents() {
2627

2728
return (
2829
<section className="bg-orange-primary flex flex-col items-center justify-center lg:h-screen py-24 px-2">
29-
<span className="font-clashDisplay mb-12 text-2xl">Previous Open Source Festivals:</span>
3030
<div className="grid grid-cols-1 lg:grid-cols-2 gap-4 lg:gap-6 text-white">
3131
{events.reverse().map((item, index) => (
3232
<a
@@ -43,12 +43,10 @@ function PastEvents() {
4343
</a>
4444
))}
4545
</div>
46-
<a
47-
href="https://oscafrica.org"
48-
target="_blank"
49-
rel="noopener noreferrer"
50-
className="font-clashDisplay mt-12 text-md"
51-
>
46+
<a href="/" className="mt-20 mb-4">
47+
<img alt="Open Source Community Africa's Logo" className="block mx-auto w-20" src={homeBackground.logo} />
48+
</a>
49+
<a href="https://oscafrica.org" target="_blank" rel="noopener noreferrer" className="font-clashDisplay text-md">
5250
&copy; Open Source Community Africa.
5351
</a>
5452
</section>

0 commit comments

Comments
 (0)