diff --git a/app/(pages)/(hackers)/_components/2025BigVinyl/BigVinyl.tsx b/app/(pages)/(hackers)/_components/2025BigVinyl/BigVinyl.tsx
deleted file mode 100644
index ac89173cb..000000000
--- a/app/(pages)/(hackers)/_components/2025BigVinyl/BigVinyl.tsx
+++ /dev/null
@@ -1,162 +0,0 @@
-'use client';
-import Image from 'next/image';
-
-import cloudBottom from '@public/BigVinyl/CloudBottom.svg';
-import cloudBottomDim from '@public/BigVinyl/CloudBottomDim.svg';
-import cloudCenterLeft from '@public/BigVinyl/CloudCenter.svg';
-import cloudCenterRight from '@public/BigVinyl/CloudCenterRight.svg';
-import cloudTop from '@public/BigVinyl/CloudTop.svg';
-import cloudTopMobile from '@public/BigVinyl/CloudTopMobile.svg';
-import vinyl from '@public/BigVinyl/Vinyl_text_style_1.svg';
-import sparkles from '@public/BigVinyl/Sparkles.svg';
-
-import musicNotes from '@public/Waterfall/music_notes.svg';
-import keyboardDucky from '@public/Waterfall/keyboard_ducky.svg';
-
-export default function BigVinyl() {
- return (
-
- {/* First Row */}
-
- {/* Clouds Top Left - Visible on md and up */}
-
-
- {/* Clouds Top Right - Only visible on md, lg, xl, 2xl */}
-
-
-
- {/* Second Row */}
-
-
-
-
- {/* Third Row - bottom layer of clouds less opaque */}
-
- {/* Clouds Bottom Left - Only visible on md, lg, xl, 2xl */}
-
-
- {/* Clouds Bottom Right - Large till md, Small on md, lg, xl, 2xl */}
-
-
-
- {/* Vinyl Row - Large screens center it, Small screens hide it */}
-
-
- {/* Top layer of clouds */}
-
-
- {/* Sparkles */}
-
-
- {/* music notes - sm and below only */}
-
-
-
-
- {/* Keyboard ducky - sm and below only */}
-
-
-
-
- );
-}
diff --git a/app/(pages)/(hackers)/_components/2025Contact/Contact.module.scss b/app/(pages)/(hackers)/_components/2025Contact/Contact.module.scss
deleted file mode 100644
index 59d6b88a9..000000000
--- a/app/(pages)/(hackers)/_components/2025Contact/Contact.module.scss
+++ /dev/null
@@ -1,270 +0,0 @@
-@import 'app/(pages)/_globals/mixins';
-
-// DESKTOP & ABOVE
-.topSection {
- position: relative;
- background-color: #DFF6F3;
- align-content: stretch;
- margin-bottom: 10%;
-
- @include tablet-l {
- display: none;
- }
-
- .container {
- display: flex;
- flex-direction: row;
- align-items: stretch;
- height: 450px;
-
- .blueBox,
- .whiteBox {
- flex: 1;
- align-items: flex-start;
- }
-
- > :first-child,
- > :last-child {
- flex: 0.35;
- }
-
- .blueBox {
- background-color: #9EE7E5;
- }
-
- .whiteBox {
- background: linear-gradient(
- 284deg,
- rgba(213, 252, 209, 0.25) 9.72%,
- rgba(178, 231, 221, 0.25) 44.61%,
- rgba(118, 214, 230, 0.25) 79.5%
- );
- overflow: hidden;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
-
- .textContent {
- padding: 8%;
- display: flex;
- flex-direction: column;
- gap: 30px;
- }
-
- .button {
- border-radius: 20px;
- border: 1.5px dashed var(--text-dark);
- padding: 12px 24px;
- transition: background-color 0.15s ease;
- width: fit-content;
-
- &:hover {
- background-color: var(--text-dark);
- border: 1.5px solid;
- color: var(--text-light);
- }
- }
- }
-
- .alignBottom {
- display: flex;
- align-items: flex-end;
-
- .textContent {
- justify-content: flex-end;
- align-items: flex-end;
- text-align: right;
- }
-
- .button {
- align-self: flex-end;
- }
- }
-
- .squiggle {
- position: absolute;
- bottom: -100px;
- left: 0;
- width: 100%;
- height: auto;
- object-fit: cover;
- z-index: 2;
- pointer-events: none;
-
- @include monitor-s { bottom: -90px; }
- @include desktop-l { bottom: -70px; }
- @include desktop-m { bottom: -55px; }
- @include desktop-s { bottom: -45px; }
- }
-
- .animalWrapper {
- position: relative;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .cow, .duck {
- height: auto;
- z-index: 1;
- }
-
- .cow {
- width: 90%;
- padding-right: 20%;
- padding-top: 5%;
- }
-
- .duck {
- width: 100%;
- }
-
- .cowphone, .duckphone {
- position: absolute;
- width: 30%;
- height: auto;
- z-index: 2;
- animation: bounce 2s infinite ease-in-out;
- }
-
- .cowphone {
- top: 20%;
- left: 60%;
- animation-delay: 0.5s;
- }
-
- .duckphone {
- left: 13%;
- top: 10%;
- }
-
- @keyframes bounce {
- 0%, 100% {
- transform: translateY(0);
- }
- 50% {
- transform: translateY(-15px);
- @include tablet-l {
- transform: translateY(-10px);
- }
- }
- }
-}
-
-// MOBILE SECTION: ONLY VISIBLE ON tablet-l AND SMALLER
-.mobile {
- display: none;
-
- @include tablet-l {
- display: flex;
- flex-direction: column;
- width: 100%;
- padding: 0 48px 7.5%;
- gap: 20px;
-
- .cardMentor,
- .cardDirector {
- background-color: #e3f9f7;
- border-radius: 16px;
- text-align: center;
- position: relative;
-
- p {
- font-size: 14px;
- color: #333;
- margin: 12px 0 18px;
- }
-
- button {
- background: var(--text-dark);
- color: white;
- border: none;
- border-radius: 8px;
- padding: 10px 16px;
- font-size: 13px;
- cursor: pointer;
-
- &:hover {
- background-color: var(--text-light);
- color: var(--text-dark);
- }
- }
-
- .mobileText {
- background-color: #9EE7E5;
- display: flex;
- padding: 32px 23px;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- gap: 10px;
- border-bottom-left-radius: 12px;
- border-bottom-right-radius: 12px;
- }
- }
-
- .mobileanimalWrapper {
- position: relative;
- width: 100%;
- max-width: 450px;
- aspect-ratio: 450 / 320;
- margin: 0 auto;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .mobileduck,
- .mobilecow {
- height: auto;
- z-index: 1;
- }
-
- .mobileduck {
- width: 100%;
- margin-bottom: -13%;
- }
-
- .mobilecow {
- width: 90%;
- margin-bottom: -10%;
- padding-right: 15%;
- }
-
- .mobilecowphone {
- position: absolute;
- top: 40%;
- right: 5%;
- width: 25%;
- z-index: 2;
- animation: bounce 2s infinite ease-in-out;
- }
-
- .mobileduckphone {
- position: absolute;
- top: 32%;
- left: 15%;
- width: 25%;
- z-index: 2;
- animation: bounce 2s infinite ease-in-out;
- }
-
- .mobilesquiggle {
- position: absolute;
- top: 58%;
- left: 0;
- width: 100%;
- height: auto;
- object-fit: cover;
- z-index: 2;
- pointer-events: none;
-
- @include mobile-l { top: 50%;}
- @include mobile-m { top: 43%;}
- }
- }
-}
diff --git a/app/(pages)/(hackers)/_components/2025Contact/Contact.tsx b/app/(pages)/(hackers)/_components/2025Contact/Contact.tsx
deleted file mode 100644
index 4d9621a6b..000000000
--- a/app/(pages)/(hackers)/_components/2025Contact/Contact.tsx
+++ /dev/null
@@ -1,145 +0,0 @@
-import styles from './Contact.module.scss';
-import Image from 'next/image';
-import Squiggle from 'public/hackers/hero/SquiggleBorder.svg';
-import CowPhone from 'public/hackers/hero/CowPhone.svg';
-import Cow from 'public/hackers/hero/AirpodCow.svg';
-import DuckPhone from 'public/hackers/hero/DuckPhone.svg';
-import Duck from 'public/hackers/hero/AirpodDuck.svg';
-
-export default function Contact() {
- return (
- <>
-
- {/* Top div with WaterfallGrass */}
-
-
-
-
- {/* Bottom div with three sections in a row */}
-
- {/* Leftmost item */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Middle Item */}
-
-
-
-
- {/* Rightmost item */}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/FAQAccordian.tsx b/app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/FAQAccordian.tsx
index 158085c32..df85f707d 100644
--- a/app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/FAQAccordian.tsx
+++ b/app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/FAQAccordian.tsx
@@ -11,7 +11,7 @@ import Step3 from 'public/hackers/project-info/Step3.svg';
import Step4 from 'public/hackers/project-info/Step4.svg';
import Step5 from 'public/hackers/project-info/Step5.svg';
import Step6 from 'public/hackers/project-info/Step6.svg';
-import MusicPlayer from '../../2025IndexHero/MusicPlayer';
+import MusicPlayer from './MusicPlayer';
const FAQAccordian = () => {
const steps = [
diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/MusicPlayer.module.scss b/app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/MusicPlayer.module.scss
similarity index 100%
rename from app/(pages)/(hackers)/_components/2025IndexHero/MusicPlayer.module.scss
rename to app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/MusicPlayer.module.scss
diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/MusicPlayer.tsx b/app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/MusicPlayer.tsx
similarity index 100%
rename from app/(pages)/(hackers)/_components/2025IndexHero/MusicPlayer.tsx
rename to app/(pages)/(hackers)/_components/ProjectInfo/FAQAccordian/MusicPlayer.tsx
diff --git a/app/(pages)/_components/2025Footer/Footer.module.scss b/app/(pages)/_components/2025Footer/Footer.module.scss
deleted file mode 100644
index 4efe25d33..000000000
--- a/app/(pages)/_components/2025Footer/Footer.module.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-// $footer-color: #122537;
-// $brand-icon-color: white;
-
-// .container {
-// width: 100%;
-// display: flex;
-// flex-direction: column;
-// background: $footer-color;
-// align-items: center;
-// padding: 24px;
-// padding-top: 30px;
-// gap: 24px;
-// justify-content: space-evenly;
-
-// .brandIcons {
-// display: flex;
-// flex-direction: row;
-// justify-content: space-evenly;
-// align-items: center;
-// width: 100%;
-// padding-top: 10px;
-
-// * {
-// color: white;
-// font-size: 1.375rem;
-// }
-// }
-
-// .copyright {
-// color:white;
-// font-size: 14px;
-// }
-// }
\ No newline at end of file
diff --git a/app/(pages)/_components/2025Footer/Footer.tsx b/app/(pages)/_components/2025Footer/Footer.tsx
deleted file mode 100644
index 04fa97c43..000000000
--- a/app/(pages)/_components/2025Footer/Footer.tsx
+++ /dev/null
@@ -1,149 +0,0 @@
-'use client';
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faEnvelope } from '@fortawesome/free-solid-svg-icons';
-import {
- faMedium,
- faFacebookF,
- faTwitter,
- faInstagram,
- faDiscord,
-} from '@fortawesome/free-brands-svg-icons';
-import { config } from '@fortawesome/fontawesome-svg-core';
-import Image from 'next/image';
-config.autoAddCss = false;
-
-const scrollToTop = () => {
- window.scrollTo({ top: 0, behavior: 'smooth' });
-};
-
-export default function Footer() {
- const logoStyles =
- 'h-6 text-white transition hover:text-gray-300 break-400:h-8 md:h-12 md:h-8 xl:h-12 2xl:h-15 ';
- return (
-