Skip to content

Commit c4e5434

Browse files
committed
added sponsor highlights
1 parent 2cd7204 commit c4e5434

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

src/components/Home/Sponsors.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import React from "react";
22
import { Row, Col } from "react-bootstrap";
3-
import './home.css'
43

54
function 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>

src/components/Home/home.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@
460460
text-align: center !important;
461461
border-radius: 5px !important;
462462
display: table !important;
463-
box-shadow: 4px 5px 4px 3px rgba(89, 4, 168, 0.137) !important;
463+
box-shadow: 2px 2px 2px 2px rgba(89, 4, 168, 0.137);
464464
overflow: hidden !important;
465465
transition: all 0.4s ease 0s !important;
466466
}
@@ -477,6 +477,10 @@
477477

478478
}
479479

480+
.sponsor-special {
481+
box-shadow: 0px 0px 10px 6px rgba(119, 53, 136, 0.459);
482+
}
483+
480484
@media (max-width: 767px) {
481485
.sponsor-icons {
482486
margin: 10px !important;

0 commit comments

Comments
 (0)