diff --git a/src/components/Home/Sponsors.js b/src/components/Home/Sponsors.js index 8f4f8e6..be47ef6 100644 --- a/src/components/Home/Sponsors.js +++ b/src/components/Home/Sponsors.js @@ -7,44 +7,43 @@ function Sponsors() { href: 'https://www.vanderbilt.edu/valiant/', imgSrc: 'assets/sponsors/valiant.png', alt: 'Vanderbilt Lab for Immersive AI Translation', - special: true + gold: true }, { - href: 'https://engineering.vanderbilt.edu/cs', - imgSrc: 'assets/sponsors/cs.png', - alt: 'Computer Science', - }, - { - href: 'https://www.vanderbilt.edu/datascience', - imgSrc: 'assets/sponsors/dsi.png', - alt: 'Vanderbilt Data Science Institute', + href: 'https://www.vumc.org/vuiis/welcome', + imgSrc: 'assets/sponsors/vuiis.png', + alt: 'Vanderbilt University Institute of Imaging Science', }, { href: 'https://engineering.vanderbilt.edu/ece', imgSrc: 'assets/sponsors/ece.png', alt: 'Electrical and Computer Engineering', - special: true }, { href: 'https://medschool.vanderbilt.edu/brain-institute', imgSrc: 'assets/sponsors/vbi.png', alt: 'Vanderbilt Brain Institute', }, + { + href: 'https://www.isis.vanderbilt.edu/', + imgSrc: 'assets/sponsors/isis.png', + alt: 'Institute for Software Integrated Systems', + }, { href: 'https://vkc.vumc.org/vkc', imgSrc: 'assets/sponsors/vkc.png', alt: 'Vanderbilt Kennedy Center', }, - { - href: 'https://engineering.vanderbilt.edu', - imgSrc: 'assets/sponsors/vuse.png', - alt: 'Vanderbilt University School of Engineering', - }, { href: 'https://engineering.vanderbilt.edu/bme', imgSrc: 'assets/sponsors/bme.png', alt: 'Biomedical Engineering', }, + { + href: 'https://engineering.vanderbilt.edu/cs', + imgSrc: 'assets/sponsors/cs.png', + alt: 'Computer Science', + }, { href: 'https://as.vanderbilt.edu/biological-sciences', imgSrc: 'assets/sponsors/casbs.png', @@ -55,11 +54,6 @@ function Sponsors() { imgSrc: 'assets/sponsors/casp.png', alt: 'Psychology', }, - { - href: 'https://www.vanderbilt.edu/the-wondry/', - imgSrc: 'assets/sponsors/wondry.png', - alt: 'The Wondry', - } ]; return ( @@ -67,17 +61,30 @@ function Sponsors() {

- 2025 Sponsors + 2026 Sponsors

- We gratefully acknowledge the generous support of our sponsors. A special thanks go to the partnership of VALIANT and ECE. + We gratefully acknowledge the generous support of our sponsors. A special thanks go to the partnership of VALIANT.

+ + {sponsors.filter(s => s.gold).map((sponsor, index) => ( + + + {sponsor.alt} + + + ))} + - {sponsors.map((sponsor, index) => ( + {sponsors.filter(s => !s.gold).map((sponsor, index) => ( {sponsor.alt} diff --git a/src/components/Home/home.css b/src/components/Home/home.css index 92925ac..733d658 100644 --- a/src/components/Home/home.css +++ b/src/components/Home/home.css @@ -477,12 +477,19 @@ } -.sponsor-special { - box-shadow: 0px 0px 10px 8px rgba(119, 53, 136, 0.459); +.sponsor-gold { + box-shadow: 0px 0px 10px 8px rgba(255, 215, 0, 0.5); + border: 1.7px solid rgba(255, 255, 0, 1) !important; +} + +.sponsor-silver { + box-shadow: 0px 0px 10px 8px rgba(192, 192, 192, 0.5); + border: 1.7px solid rgba(192, 192, 192, 1) !important; } @media (max-width: 767px) { .sponsor-icons { margin: 10px !important; + box-sizing: content-box !important; } } \ No newline at end of file