Skip to content

Commit d41fffe

Browse files
committed
feat: change of venue and current sponsor
1 parent ac9cdc7 commit d41fffe

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

public/sponsors/bpd.png

45.5 KB
Loading

public/sponsors/cactus.png

62.9 KB
Loading

src/components/hero-section.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,16 @@ export default function HeroSection() {
3232
Welcome to PyCon Kenya 2025
3333
</h1>
3434
<h3 className="pt-6 text-2xl">26th - 27th September, 2025</h3>
35-
<h4 className="pt-6 text-1xl">Daystar University, Nairobi, Kenya</h4>
35+
<h4 className="pt-6 text-1xl">
36+
<a
37+
href="https://maps.app.goo.gl/pYMgyQAV5ibKuuW27"
38+
target="_blank"
39+
rel="noreferrer"
40+
className="underline"
41+
>
42+
Ngong Hills Hotel, Nairobi, Kenya
43+
</a>
44+
</h4>
3645
<p className="my-6 text-xl text-muted-foreground">
3746
Africa's largest Python conference, held in Nairobi, Kenya. Join us
3847
for a weekend of inspiring talks, informative workshops, and fun

src/components/nav-bar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import {
3939
Users,
4040
Zap,
4141
} from "lucide-react";
42+
import Link from "next/link";
4243

4344
const subMenuItemsOne = [
4445
{
@@ -212,7 +213,7 @@ export default function Navbar1() {
212213
<DropdownMenuTrigger>Past Events</DropdownMenuTrigger>
213214
<DropdownMenuContent>
214215
<DropdownMenuItem>
215-
<a href="/2022">2022</a>
216+
<Link href="/2022">2022</Link>
216217
</DropdownMenuItem>
217218
<DropdownMenuItem>2018</DropdownMenuItem>
218219
<DropdownMenuItem>2017</DropdownMenuItem>

src/components/sponsors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function Sponsors() {
1515
<div className="grid gap-12">
1616
<div>
1717
<h2 className="text-3xl font-bold lg:text-4xl text-center">
18-
Previous Sponsors
18+
Sponsors
1919
</h2>
2020
</div>
2121
</div>

src/lib/constants.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ interface Sponsor {
66
}
77

88
export const sponsors: Sponsor[] = [
9+
{
10+
title: "Cactus Group",
11+
image: "/sponsors/cactus.png",
12+
url: "https://www.caktusgroup.com/",
13+
year: ["2025"],
14+
},
15+
{
16+
title: "Black Python Devs",
17+
image: "/sponsors/bpd.png",
18+
url: "https://blackpythondevs.com",
19+
year: ["2025"],
20+
},
921
{
1022
title: "Twiga",
1123
image: "/sponsors/twiga.png",
@@ -28,13 +40,13 @@ export const sponsors: Sponsor[] = [
2840
title: "Moringa",
2941
image: "/sponsors/moringa.png",
3042
url: "https://moringaschool.com/",
31-
year: ["2022"],
43+
year: ["2022", "2025"],
3244
},
3345
{
3446
title: "Python Software Foundation",
3547
image: "/sponsors/psf.png",
3648
url: "https://www.python.org/psf/",
37-
year: ["2018", "2022"],
49+
year: ["2018", "2022", "2025"],
3850
},
3951
{
4052
title: "James Nzomo Foundation",

0 commit comments

Comments
 (0)