diff --git a/app/(pages)/about-us/_components/CelebratePast/celebratePast.tsx b/app/(pages)/about-us/_components/CelebratePast/celebratePast.tsx
index 5d6cc4a..888b433 100644
--- a/app/(pages)/about-us/_components/CelebratePast/celebratePast.tsx
+++ b/app/(pages)/about-us/_components/CelebratePast/celebratePast.tsx
@@ -18,7 +18,7 @@ function Pictures({
const animClass =
order === 1
- ? 'animate-picture1 bg-[#BDC7D0]'
+ ? 'animate-picture1 bg-[#DCE3EA]'
: order === 2
? 'animate-picture2 bg-[#BDC7D0]'
: order === 3
@@ -31,9 +31,9 @@ function Pictures({
return (
-
@@ -42,17 +42,28 @@ function Pictures({
export default function CelebratePast() {
const [images, setImages] = useState
![]()
([
- { path: '/Images/celebrateus/One.jpeg', alt: 'i like among us' },
- { path: '/Images/celebrateus/Two.jpg', alt: 'its pretty cool' },
- { path: '/Images/celebrateus/Three.jpg', alt: 'cheese is also cool' },
- { path: '/Images/celebrateus/Four.jpg', alt: 'amongsus' },
- { path: '/Images/celebrateus/Five.jpg', alt: 'among us!!!' },
+ { path: '/Images/celebrateus/One.jpeg', alt: 'the goated three' },
+ {
+ path: '/Images/celebrateus/Two.jpg',
+ alt: 'hackdavis directors smiling for a photo',
+ },
+ {
+ path: '/Images/celebrateus/Three.jpg',
+ alt: 'close up of hackers looking at their computers',
+ },
+ {
+ path: '/Images/celebrateus/Four.jpg',
+ alt: 'ucd arc pavilion full of hackers',
+ },
+ {
+ path: '/Images/celebrateus/Five.jpg',
+ alt: 'two individuals posing next to hackdavis cow mascot',
+ },
]);
useEffect(() => {
- // match this interval to your CSS animation duration
+ // match this interval to CSS animation duration
const DURATION_MS = 3000;
-
const id = window.setInterval(() => {
setImages((prev) => {
const [first, ...rest] = prev;
@@ -64,24 +75,17 @@ export default function CelebratePast() {
}, []);
return (
-
+
{/* text */}
-
+
Come celebrate
our past with us!
- {/* paragraph */}
-
-
+
+
We truly could not have done any of this
without you. Your support means the
world!
@@ -89,7 +93,7 @@ export default function CelebratePast() {
-