11import React from "react" ;
22import { Row , Col } from "react-bootstrap" ;
3- import './home.css'
43
54function Sponsors ( ) {
65 const sponsors = [
76 {
87 href : 'https://www.vanderbilt.edu/valiant/' ,
98 imgSrc : 'assets/sponsors/valiant.png' ,
109 alt : 'Vanderbilt Lab for Immersive AI Translation' ,
10+ special : true
1111 } ,
1212 {
1313 href : 'https://engineering.vanderbilt.edu/cs' ,
@@ -23,6 +23,7 @@ function Sponsors() {
2323 href : 'https://engineering.vanderbilt.edu/ece' ,
2424 imgSrc : 'assets/sponsors/ece.png' ,
2525 alt : 'Electrical and Computer Engineering' ,
26+ special : true
2627 } ,
2728 {
2829 href : 'https://medschool.vanderbilt.edu/brain-institute' ,
@@ -68,9 +69,16 @@ function Sponsors() {
6869 < h2 className = "page-heading" >
6970 2025 < span className = "purple" > Sponsors</ span >
7071 </ h2 >
72+ < p className = "text-white text-center mb-8" >
73+ We gratefully acknowledge the generous support of our sponsors. A special thanks go to the partnership of VALIANT and ECE.
74+ </ p >
7175 < Row style = { { justifyContent : "center" , paddingBottom : "50px" } } >
7276 { sponsors . map ( ( sponsor , index ) => (
73- < Col key = { index } lg = { 3 } className = "sponsor-icons" >
77+ < Col
78+ key = { index }
79+ lg = { 3 }
80+ className = { `sponsor-icons ${ sponsor . special ? 'sponsor-special' : '' } ` }
81+ >
7482 < a href = { sponsor . href } target = "_blank" rel = "noopener noreferrer" >
7583 < img src = { sponsor . imgSrc } alt = { sponsor . alt } className = "sponsor-image" />
7684 </ a >
0 commit comments