From 5d3374fdbd7077e254410927c80f09994c97b39e Mon Sep 17 00:00:00 2001 From: Cedric Rische Date: Tue, 27 Jan 2026 19:03:55 +0100 Subject: [PATCH] Updated Sponsors section for 2026: replaced 2025 sponsor assets, added primary sponsors grid, and included new SVG assets. --- public/HackHPI26_white.svg | 35 +++++++++++++++ .../images/sponsors/2026/Lockup-White.svg | 8 ++++ src/assets/images/sponsors/2026/engine.svg | 12 +++++ src/components/LandingImage/LandingImage.jsx | 2 +- src/components/Sponsors/Sponsors26.jsx | 44 ++++++++++++++++--- 5 files changed, 94 insertions(+), 7 deletions(-) create mode 100644 public/HackHPI26_white.svg create mode 100644 src/assets/images/sponsors/2026/Lockup-White.svg create mode 100644 src/assets/images/sponsors/2026/engine.svg diff --git a/public/HackHPI26_white.svg b/public/HackHPI26_white.svg new file mode 100644 index 0000000..d0b2957 --- /dev/null +++ b/public/HackHPI26_white.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/sponsors/2026/Lockup-White.svg b/src/assets/images/sponsors/2026/Lockup-White.svg new file mode 100644 index 0000000..c9cc590 --- /dev/null +++ b/src/assets/images/sponsors/2026/Lockup-White.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/assets/images/sponsors/2026/engine.svg b/src/assets/images/sponsors/2026/engine.svg new file mode 100644 index 0000000..9653143 --- /dev/null +++ b/src/assets/images/sponsors/2026/engine.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/components/LandingImage/LandingImage.jsx b/src/components/LandingImage/LandingImage.jsx index a759f5a..4a3a354 100644 --- a/src/components/LandingImage/LandingImage.jsx +++ b/src/components/LandingImage/LandingImage.jsx @@ -39,7 +39,7 @@ function LandingImage() { minHeight: "60vh", }} > - {"HackHPI + {"HackHPI
Agriculture, Climate & Tech diff --git a/src/components/Sponsors/Sponsors26.jsx b/src/components/Sponsors/Sponsors26.jsx index 7459401..6dbb07d 100644 --- a/src/components/Sponsors/Sponsors26.jsx +++ b/src/components/Sponsors/Sponsors26.jsx @@ -1,13 +1,18 @@ import { Box, Container, Grid, Link } from "@mui/material"; -import Engine from "../../assets/images/sponsors/2025/engine.svg"; -import Aws from "../../assets/images/sponsors/2025/aws.svg"; -import Ottobock from "../../assets/images/sponsors/2025/ottobock.svg"; -import Quantco from "../../assets/images/sponsors/2025/quantco.svg"; -import Tk from "../../assets/images/sponsors/2025/tk.svg"; +import Engine from "../../assets/images/sponsors/2026/engine.svg"; +import Cula from "../../assets/images/sponsors/2026/Lockup-White.svg"; import React from "react"; import HackHPIWrapper from "../Theme/HackHPIWrapper.jsx"; function Sponsors() { + const primarySponsors = [ + { + logo: Cula.src, + alt: "Logo of Cula Technologies", + link: "https://cula.tech", + }, + ]; + const sponsors = [ { logo: Engine.src, @@ -20,6 +25,33 @@ function Sponsors() { + + {primarySponsors.map((sponsor, idx) => ( + + + + + + ))} +