diff --git a/frontend/src/app/components/DeerhackStats/page.tsx b/frontend/src/app/components/DeerhackStats/page.tsx
index 1c6ed18..651a45c 100644
--- a/frontend/src/app/components/DeerhackStats/page.tsx
+++ b/frontend/src/app/components/DeerhackStats/page.tsx
@@ -20,8 +20,9 @@ export default function StatsSection() {
svg={
}
title="Total Projects"
border={true}
- numbers={33}
- className="h-[200px]"
+ numbers={50}
+ className="h-[200px]"
+ isExtra={true}
/>
From 085c9c72462c80f5b9da02cf33dfb1b3e55f8fcb Mon Sep 17 00:00:00 2001
From: Rijan Dahal <70582929+enkoki@users.noreply.github.com>
Date: Fri, 10 Apr 2026 00:03:43 +0545
Subject: [PATCH 5/5] update: width of tracks card
---
frontend/src/app/sections/Tracks/TracksCard.tsx | 6 +++---
frontend/src/app/sections/Tracks/styles.module.css | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/frontend/src/app/sections/Tracks/TracksCard.tsx b/frontend/src/app/sections/Tracks/TracksCard.tsx
index 5f13791..5db79ac 100644
--- a/frontend/src/app/sections/Tracks/TracksCard.tsx
+++ b/frontend/src/app/sections/Tracks/TracksCard.tsx
@@ -34,11 +34,11 @@ const TracksCard = () => {
"Enter the World of IoT with DeerHack. Explore connectivity, innovation, and the future of global interaction.",
},
{
- title: "Machine Learning / AI",
+ title: "Machine Learning / Artificial Intelligence",
svg:
,
svgBody:
,
headStyling:
- selectedTrack === "Machine Learning / AI"
+ selectedTrack === "Machine Learning / Artificial Intelligence"
? "bg-purpures text-magnolia active"
: "bg-violet hover:bg-purpures hover:text-magnolia transition-all duration-300",
bodyStyling: "bg-purpures text-magnolia",
@@ -127,7 +127,7 @@ const TracksCard = () => {
// }, [selectedTrack]);
return (
-
+
diff --git a/frontend/src/app/sections/Tracks/styles.module.css b/frontend/src/app/sections/Tracks/styles.module.css
index 251ca10..b9917fd 100644
--- a/frontend/src/app/sections/Tracks/styles.module.css
+++ b/frontend/src/app/sections/Tracks/styles.module.css
@@ -12,10 +12,10 @@
@keyframes green-blue-shift {
0% { background-color: #6DB94C; }
- 50% { background-color: #241A4A }
+ 50% { background-color: #241A4A; }
100% { background-color: #6DB94C; }
}
.envAnimate {
- animation: green-blue-shift 3s ease-in-out infinite;
+ animation: green-blue-shift 4s infinite;
}