Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CTA } from "@/components/home/CTA";
import { Hero } from "@/components/home/Hero";
import { Newsletter } from "@/components/home/Newsletter";
// import { Organisations } from "@/components/home/Organisations";
import { Organisations } from "@/components/home/Organisations";
// import { OurImpact } from "@/components/home/OurImpact";
import { Stats } from "@/components/home/Stats";
import { WhatWeOffer } from "@/components/home/WhatWeOffer";
Expand All @@ -10,7 +10,7 @@ export default function Home() {
return (
<div className="w-full flex flex-col">
<Hero />
{/* <Organisations /> */}
<Organisations />
<Stats />
<WhatWeOffer />
{/* <OurImpact /> */}
Expand Down
Binary file removed src/assets/images/hero-bg-image.jpg
Binary file not shown.
Binary file removed src/assets/images/logos/articles-logo.png
Binary file not shown.
Binary file removed src/assets/images/logos/community-logo.png
Binary file not shown.
Binary file removed src/assets/images/logos/events-logo.png
Binary file not shown.
Binary file added src/assets/images/orgs-logos/IEEE-CS_LogoTM.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 8 additions & 45 deletions src/lib/data/partners.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import djangoGirlsLogo from "@/assets/images/orgs-logos/djgirlskoforidua.png";
import ieeeLogo from "@/assets/images/orgs-logos/IEEE-CS_LogoTM.png";

export type RelationshipType = "worked-with" | "partner" | "sponsor";

export interface Organisation {
Expand All @@ -10,54 +13,14 @@ export interface Organisation {
export const organisations: Organisation[] = [
{
id: 1,
name: "Django Girls",
logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Django_Girls_logo.svg/1200px-Django_Girls_logo.svg.png",
type: "sponsor",
name: "IEEE-CS",
logo: ieeeLogo.src,
type: "worked-with",
},
{
id: 2,
name: "Open Source Community Africa",
logo: "https://raw.githubusercontent.com/oscafrica/oscafrica.org-v2/main/public/images/logo/light/osca.svg",
type: "partner",
},
{
id: 3,
name: "Python Software Foundation",
logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Python-logo-notext.svg/1200px-Python-logo-notext.svg.png",
type: "partner",
},
{
id: 4,
name: "GitHub",
logo: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
type: "partner",
},
{
id: 5,
name: "Google for Developers",
logo: "https://www.gstatic.com/devrel-devsite/prod/v773193e230ce8d1973c735d469cf3e5d381165e6d6387063469e3bc6482f345c/developers/images/touchicon-180.png",
type: "sponsor",
},
{
id: 6,
name: "Microsoft for Startups",
logo: "https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageMW/RE1Mu3b?ver=5c31",
name: "Django Girls Koforidua",
logo: djangoGirlsLogo.src,
type: "worked-with",
},

// --- Add formal partners here when agreements are in place ---
// {
// id: 7,
// name: "Partner Name",
// logo: "https://...",
// type: "partner",
// },

// --- Add sponsors here when confirmed ---
// {
// id: 8,
// name: "Sponsor Name",
// logo: "https://...",
// type: "sponsor",
// },
];
Loading