diff --git a/components/Layout.tsx b/components/Layout.tsx
index c78501f..f478086 100644
--- a/components/Layout.tsx
+++ b/components/Layout.tsx
@@ -103,7 +103,7 @@ export default function Layout({
- {/* */}
+
diff --git a/components/SponsorTable.tsx b/components/SponsorTable.tsx
index f9729ce..b54d024 100644
--- a/components/SponsorTable.tsx
+++ b/components/SponsorTable.tsx
@@ -5,6 +5,37 @@ type TSponsorTable = {
isVisible: boolean
};
+interface CommunitySponsor {
+ href: string;
+ src: string;
+ alt: string;
+ width?: number;
+ height?: number;
+}
+
+const communitySponsors: CommunitySponsor[] = [
+ {
+ href: "https://www.theredcode.it/",
+ src: "/the-red-code.png",
+ alt: "TheRedCode",
+ width: 300,
+ },
+ {
+ href: "https://kube.events/",
+ src: "/kube-events.svg",
+ alt: "KubeEvents Logo",
+ width: 100,
+ height: 100
+ },
+ {
+ href: "https://kube.careers/",
+ src: "/kube-careers.svg",
+ alt: "KubeCareers Logo",
+ width: 80,
+ height: 80
+ }
+];
+
const SponsorTable = ({isVisible}: TSponsorTable) => {
if (isVisible) {
return (
@@ -216,6 +247,27 @@ const SponsorTable = ({isVisible}: TSponsorTable) => {
+
+
+
+
+
+
+ */}
+ Community
+
+ {communitySponsors.map(({ href, src, alt, width, height }) => {
+ return (
+
+
+
+ );
+ })}
{/*
Patronage
diff --git a/public/kube-careers_logo.svg b/public/kube-careers.svg
similarity index 100%
rename from public/kube-careers_logo.svg
rename to public/kube-careers.svg
diff --git a/public/kube-events_logo.svg b/public/kube-events.svg
similarity index 100%
rename from public/kube-events_logo.svg
rename to public/kube-events.svg
diff --git a/public/the-red-code.png b/public/the-red-code.png
new file mode 100644
index 0000000..83aa77a
Binary files /dev/null and b/public/the-red-code.png differ
diff --git a/public/the-red-code_logo.png b/public/the-red-code_logo.png
deleted file mode 100644
index 6f8f4e8..0000000
Binary files a/public/the-red-code_logo.png and /dev/null differ