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 Left Layer 1 -
-
- Clouds Top Left Layer 2 -
-
- - {/* Clouds Top Right - Only visible on md, lg, xl, 2xl */} -
-
- Clouds Top Right Layer 1 -
-
- Clouds Top Right Layer 2 -
-
-
- - {/* Second Row */} -
-
- Center Cloud Left -
-
- Center Cloud Right -
-
- -
-
- Center Top mobile -
-
- - {/* Third Row - bottom layer of clouds less opaque */} -
- {/* Clouds Bottom Left - Only visible on md, lg, xl, 2xl */} -
-
- Clouds Bottom Left Layer 2 -
-
- - {/* Clouds Bottom Right - Large till md, Small on md, lg, xl, 2xl */} -
-
- Clouds Bottom Right Layer 2 -
-
-
- - {/* Vinyl Row - Large screens center it, Small screens hide it */} -
-
- Big Vinyl Center -
-
- - {/* Top layer of clouds */} -
-
-
- Clouds Bottom Left Layer 1 -
-
-
-
- Clouds Bottom Right Layer 1 -
-
-
- - {/* Sparkles */} -
-
- Vinyl Sparkles -
-
- - {/* music notes - sm and below only */} -
- Music Notes -
- - {/* Keyboard ducky - sm and below only */} -
- Keyboard Ducky -
-
- ); -} 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 ( - <> -
-
-
-
-
- Cow holding ipod - Cow holding ipod -
-
-
-
- - - -

- MENTORS are here to support developers and designers with any - technical challenges you might face during your project. Whether - you're debugging, designing, or stuck on a problem, mentors are - here to help. -

-
-
- -
-
-
-
-
-
-

- DIRECTORS can answer any questions you have about the hackathon - itself — from logistics and scheduling to rules and submissions. - If you're unsure where to go or what to do, they're your go-to - guide. -

- - - -
-
-
-
- Duck holding ipod - Duck holding ipod -
-
-
-
- Squiggle blue line divider -
- - {/* mobile section starts here */} - {/* */} -
-
-
- Duck holding ipod - Duck holding ipod -
-
- Squiggle blue line divider -

- MENTORS can support you with feedback in development and - designing. Feel free to call one over! -

- - - -
-
- - {/* */} -
-
- Duck holding ipod - Duck holding ipod -
-
- Squiggle blue line divider -

- DIRECTORS can help you with any questions regarding hackathon - events, schedules, and overall logistics! -

- - - -
-
-
- - ); -} diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/AnnouncementItem.module.scss b/app/(pages)/(hackers)/_components/2025HubComponents/AnnouncementItem.module.scss similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/AnnouncementItem.module.scss rename to app/(pages)/(hackers)/_components/2025HubComponents/AnnouncementItem.module.scss diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/AnnouncementItem.tsx b/app/(pages)/(hackers)/_components/2025HubComponents/AnnouncementItem.tsx similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/AnnouncementItem.tsx rename to app/(pages)/(hackers)/_components/2025HubComponents/AnnouncementItem.tsx diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/Announcements.module.scss b/app/(pages)/(hackers)/_components/2025HubComponents/Announcements.module.scss similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/Announcements.module.scss rename to app/(pages)/(hackers)/_components/2025HubComponents/Announcements.module.scss diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/Announcements.tsx b/app/(pages)/(hackers)/_components/2025HubComponents/Announcements.tsx similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/Announcements.tsx rename to app/(pages)/(hackers)/_components/2025HubComponents/Announcements.tsx diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/NotificationIndividual.module.scss b/app/(pages)/(hackers)/_components/2025HubComponents/NotificationIndividual.module.scss similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/NotificationIndividual.module.scss rename to app/(pages)/(hackers)/_components/2025HubComponents/NotificationIndividual.module.scss diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/NotificationIndividual.tsx b/app/(pages)/(hackers)/_components/2025HubComponents/NotificationIndividual.tsx similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/NotificationIndividual.tsx rename to app/(pages)/(hackers)/_components/2025HubComponents/NotificationIndividual.tsx diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/Notifications.tsx b/app/(pages)/(hackers)/_components/2025HubComponents/Notifications.tsx similarity index 100% rename from app/(pages)/(hackers)/_components/2025IndexHero/Notifications.tsx rename to app/(pages)/(hackers)/_components/2025HubComponents/Notifications.tsx diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/NextSchedule.module.scss b/app/(pages)/(hackers)/_components/2025IndexHero/NextSchedule.module.scss deleted file mode 100644 index 0fecc4d7f..000000000 --- a/app/(pages)/(hackers)/_components/2025IndexHero/NextSchedule.module.scss +++ /dev/null @@ -1,38 +0,0 @@ -@use 'app/(pages)/_globals/mixins'; -@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap'); -.group_width{ - width: 100%; - - p { - @include mixins.tablet-l{ - font-size: 14px; - } - } - h2{ - font-size: 36px; - font-weight: 700; - @include mixins.tablet-l{ - font-size: 20px; - font-weight: 600; - } - } - .star_icon_img{ - @include mixins.tablet-l{ - width: 16px; - height: 16px; - } - - } - button{ - font-size: 18px; - @include mixins.tablet-l{ - font-size: 14px; - } - } - h6{ - font-size: 20px; - @include mixins.tablet-l{ - font-size: 16px; - } - } -} \ No newline at end of file diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/NextSchedule.tsx b/app/(pages)/(hackers)/_components/2025IndexHero/NextSchedule.tsx deleted file mode 100644 index 6489d42f5..000000000 --- a/app/(pages)/(hackers)/_components/2025IndexHero/NextSchedule.tsx +++ /dev/null @@ -1,114 +0,0 @@ -'use client'; - -import Image from 'next/image'; -import { useEffect, useState } from 'react'; -import { usePersonalEvents } from '@hooks/usePersonalEvents'; -import useActiveUser from '@pages/_hooks/useActiveUser'; -import { useEvents } from '@hooks/useEvents'; -import CalendarItem from '../Schedule/CalendarItem'; -import Event from '@typeDefs/event'; -import TimeTracker from './TimeTracker'; -import star_icon from '@public/hackers/hero/star.svg'; - -import styles from './NextSchedule.module.scss'; - -export default function NextSchedule() { - const [nextEventData, setNextEventData] = useState<{ - event: Event | null; - attendeeCount: number; - inPersonalSchedule: boolean; - }>({ - event: null, - attendeeCount: 0, - inPersonalSchedule: false, - }); - - const { user } = useActiveUser('/'); - const { personalEvents, isLoading, refreshPersonalEvents } = - usePersonalEvents(user?._id || ''); - const { - eventData, - isLoading: eventsLoading, - refreshEvents, - } = useEvents(user); - - useEffect(() => { - if (user?._id) { - refreshPersonalEvents(); - refreshEvents(); - } - }, [user?._id, refreshPersonalEvents, refreshEvents]); - - useEffect(() => { - if ( - !isLoading && - !eventsLoading && - personalEvents && - personalEvents.length > 0 - ) { - const now = new Date(); - const upcomingEvents = personalEvents.filter( - (event) => new Date(event.start_time) > now - ); - - if (upcomingEvents.length > 0) { - const sortedEvents = [...upcomingEvents].sort( - (a, b) => - new Date(a.start_time).getTime() - new Date(b.start_time).getTime() - ); - - const nextEvent = sortedEvents[0]; - const eventWithCount = eventData.find( - (e) => e.event._id === nextEvent._id - ); - - setNextEventData({ - event: nextEvent as Event, - attendeeCount: eventWithCount?.attendeeCount || 0, - inPersonalSchedule: true, - }); - } else { - setNextEventData({ - event: null, - attendeeCount: 0, - inPersonalSchedule: false, - }); - } - } - }, [personalEvents, isLoading, eventsLoading, eventData]); - - const { event, attendeeCount, inPersonalSchedule } = nextEventData; - const nextEventTime = event?.start_time.getTime() || undefined; - - return ( -
-
-

NEXT ON YOUR SCHEDULE

- star icon - {event && ( -
- -
- )} -
- {event && ( - - )} -
- ); -} diff --git a/app/(pages)/(hackers)/_components/2025IndexHero/TimeTracker.tsx b/app/(pages)/(hackers)/_components/2025IndexHero/TimeTracker.tsx deleted file mode 100644 index 2e7ec007a..000000000 --- a/app/(pages)/(hackers)/_components/2025IndexHero/TimeTracker.tsx +++ /dev/null @@ -1,56 +0,0 @@ -'use client'; - -import { useState, useEffect } from 'react'; - -type CountdownProps = { - targetTime: number; -}; - -const Countdown = ({ targetTime }: CountdownProps) => { - const [timeLeft, setTimeLeft] = useState({ - hours: 0, - minutes: 0, - seconds: 0, - }); - - useEffect(() => { - const calculateTimeLeft = () => { - const difference = targetTime - new Date().getTime(); - if (difference <= 0) { - return { hours: 0, minutes: 0, seconds: 0 }; - } - return { - hours: Math.floor(difference / (1000 * 60 * 60)), - minutes: Math.floor((difference / (1000 * 60)) % 60), - seconds: Math.floor((difference / 1000) % 60), - }; - }; - - const timer = setInterval(() => { - setTimeLeft(calculateTimeLeft()); - }, 1000); - - return () => clearInterval(timer); - }, [targetTime]); - - return ( -
- {timeLeft.hours.toString().padStart(2, '0')} :{' '} - {timeLeft.minutes.toString().padStart(2, '0')} :{' '} - {timeLeft.seconds.toString().padStart(2, '0')} -
- ); -}; - -type TimeTrackerProps = { - targetTime?: number; -}; - -const TimeTracker = ({ targetTime }: TimeTrackerProps) => { - const effectiveTargetTime = - targetTime || new Date('2025-05-01T09:00:00Z').getTime(); - - return ; -}; - -export default TimeTracker; diff --git a/app/(pages)/(hackers)/_components/2025Waterfall/Waterfall.tsx b/app/(pages)/(hackers)/_components/2025Waterfall/Waterfall.tsx deleted file mode 100644 index 9fd5152c1..000000000 --- a/app/(pages)/(hackers)/_components/2025Waterfall/Waterfall.tsx +++ /dev/null @@ -1,90 +0,0 @@ -'use client'; -import Image from 'next/image'; - -import BunnyPlatform from '@public/Waterfall/bunny_platform.svg'; -import Bunny from '@public/Waterfall/bunny.svg'; -import CowPlatform from '@public/Waterfall/cow_platform.svg'; -import Cow from '@public/Waterfall/cow.svg'; -import DuckPlatform from '@public/Waterfall/duck_platform.svg'; -import FrogPlatform from '@public/Waterfall/frog_platform.svg'; -import KeyboardDucky from '@public/Waterfall/keyboard_ducky.svg'; -import SleepingFroggy from '@public/Waterfall/sleeping_froggy.svg'; -import MusicNotes from '@public/Waterfall/music_notes.svg'; -import WaterfallGrass from '@public/Waterfall/waterfall_grass.svg'; -import WaterfallSplash from '@public/Waterfall/waterfall_splash.svg'; -import WaterfallImage from '@public/Waterfall/waterfall.svg'; - -export default function Waterfall() { - return ( -
- {/* Top div with WaterfallGrass */} -
- Waterfall Grass -
- - {/* Bottom div with three sections in a row */} -
- {/* Leftmost item */} -
-
- Bunny -
-
- Bunny Platform -
-
- Cow -
-
- Cow Platform -
-
- - {/* Middle Item */} -
- Waterfall -
- - {/* Rightmost item */} -
-
- Keyboard Ducky -
-
- Duck Platform -
-
- Sleeping Froggy -
-
- Frog Platform -
-
-
- -
- Waterfall Splash -
- -
- Music Notes -
-
- ); -} 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 ( - - ); -} diff --git a/app/(pages)/_components/Footer/Footer.tsx b/app/(pages)/_components/Footer/Footer.tsx index 7e8f99887..acfeb6d7a 100644 --- a/app/(pages)/_components/Footer/Footer.tsx +++ b/app/(pages)/_components/Footer/Footer.tsx @@ -1,7 +1,7 @@ 'use client'; import Image from 'next/image'; -// import Link from 'next/link'; +import footer_logo from '@public/hackers/footer/FooterLogo.svg'; export default function Footer() { return ( @@ -17,7 +17,7 @@ export default function Footer() { {/* swap this src to whatever your mark is */}
Footer Logo - - diff --git a/public/BigVinyl/CloudBottomDim.svg b/public/BigVinyl/CloudBottomDim.svg deleted file mode 100644 index b7783a630..000000000 --- a/public/BigVinyl/CloudBottomDim.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/public/BigVinyl/CloudCenter.svg b/public/BigVinyl/CloudCenter.svg deleted file mode 100644 index 84a0bd2b2..000000000 --- a/public/BigVinyl/CloudCenter.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/public/BigVinyl/CloudCenterRight.svg b/public/BigVinyl/CloudCenterRight.svg deleted file mode 100644 index 59ad8c8cb..000000000 --- a/public/BigVinyl/CloudCenterRight.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/public/BigVinyl/CloudTop.svg b/public/BigVinyl/CloudTop.svg deleted file mode 100644 index 54c623cbc..000000000 --- a/public/BigVinyl/CloudTop.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/public/BigVinyl/CloudTopMobile.svg b/public/BigVinyl/CloudTopMobile.svg deleted file mode 100644 index 715745db6..000000000 --- a/public/BigVinyl/CloudTopMobile.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/public/BigVinyl/Sparkles.svg b/public/BigVinyl/Sparkles.svg deleted file mode 100644 index 974fb22b4..000000000 --- a/public/BigVinyl/Sparkles.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/public/BigVinyl/Vinyl.svg b/public/BigVinyl/Vinyl.svg deleted file mode 100644 index e8dd60650..000000000 --- a/public/BigVinyl/Vinyl.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/BigVinyl/Vinyl_text_style_1.svg b/public/BigVinyl/Vinyl_text_style_1.svg deleted file mode 100644 index 7ecd2a568..000000000 --- a/public/BigVinyl/Vinyl_text_style_1.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/BigVinyl/Vinyl_text_style_2.svg b/public/BigVinyl/Vinyl_text_style_2.svg deleted file mode 100644 index 412e4b333..000000000 --- a/public/BigVinyl/Vinyl_text_style_2.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/Footer/arrowUp.svg b/public/Footer/arrowUp.svg deleted file mode 100644 index 66751a7f4..000000000 --- a/public/Footer/arrowUp.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/public/Footer/grass_bottom.svg b/public/Footer/grass_bottom.svg deleted file mode 100644 index 3c893d59f..000000000 --- a/public/Footer/grass_bottom.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/public/Footer/grass_top.svg b/public/Footer/grass_top.svg deleted file mode 100644 index f67a30c22..000000000 --- a/public/Footer/grass_top.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/public/Footer/grass_top_mobile.svg b/public/Footer/grass_top_mobile.svg deleted file mode 100644 index 61cf1b9ec..000000000 --- a/public/Footer/grass_top_mobile.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/public/Footer/hdLogoMotto.svg b/public/Footer/hdLogoMotto.svg deleted file mode 100644 index 795983206..000000000 --- a/public/Footer/hdLogoMotto.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/public/Footer/hdLogoMottoUpdated.svg b/public/Footer/hdLogoMottoUpdated.svg deleted file mode 100644 index 0b114a567..000000000 --- a/public/Footer/hdLogoMottoUpdated.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/public/Footer/hdLogoWhite.svg b/public/Footer/hdLogoWhite.svg deleted file mode 100644 index ac3296fa5..000000000 --- a/public/Footer/hdLogoWhite.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/public/Waterfall/bunny.svg b/public/Waterfall/bunny.svg deleted file mode 100644 index 516d0a7f3..000000000 --- a/public/Waterfall/bunny.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/Waterfall/bunny_platform.svg b/public/Waterfall/bunny_platform.svg deleted file mode 100644 index 0ebf36372..000000000 --- a/public/Waterfall/bunny_platform.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/public/Waterfall/cow.svg b/public/Waterfall/cow.svg deleted file mode 100644 index 735ea6c9d..000000000 --- a/public/Waterfall/cow.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/Waterfall/cow_platform.svg b/public/Waterfall/cow_platform.svg deleted file mode 100644 index c9facbb16..000000000 --- a/public/Waterfall/cow_platform.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/public/Waterfall/duck_platform.svg b/public/Waterfall/duck_platform.svg deleted file mode 100644 index 4d7a85bd9..000000000 --- a/public/Waterfall/duck_platform.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/public/Waterfall/frog_platform.svg b/public/Waterfall/frog_platform.svg deleted file mode 100644 index 76ca8446e..000000000 --- a/public/Waterfall/frog_platform.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/public/Waterfall/keyboard_ducky.svg b/public/Waterfall/keyboard_ducky.svg deleted file mode 100644 index 3ed2ff188..000000000 --- a/public/Waterfall/keyboard_ducky.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/Waterfall/music_notes.svg b/public/Waterfall/music_notes.svg deleted file mode 100644 index c707b246a..000000000 --- a/public/Waterfall/music_notes.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/public/Waterfall/sleeping_froggy.svg b/public/Waterfall/sleeping_froggy.svg deleted file mode 100644 index 581a736c5..000000000 --- a/public/Waterfall/sleeping_froggy.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/Waterfall/waterfall.svg b/public/Waterfall/waterfall.svg deleted file mode 100644 index 838883a49..000000000 --- a/public/Waterfall/waterfall.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/public/Waterfall/waterfall_grass.svg b/public/Waterfall/waterfall_grass.svg deleted file mode 100644 index 14e675bf1..000000000 --- a/public/Waterfall/waterfall_grass.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/Waterfall/waterfall_splash.svg b/public/Waterfall/waterfall_splash.svg deleted file mode 100644 index 5252a7e11..000000000 --- a/public/Waterfall/waterfall_splash.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/public/Footer/FooterLogo.svg b/public/hackers/footer/FooterLogo.svg similarity index 100% rename from public/Footer/FooterLogo.svg rename to public/hackers/footer/FooterLogo.svg diff --git a/public/hackers/hero/AirpodCow.svg b/public/hackers/hero/AirpodCow.svg deleted file mode 100644 index 5b104696b..000000000 --- a/public/hackers/hero/AirpodCow.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/hackers/hero/AirpodDuck.svg b/public/hackers/hero/AirpodDuck.svg deleted file mode 100644 index a4610b71b..000000000 --- a/public/hackers/hero/AirpodDuck.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/hackers/hero/CowPhone.svg b/public/hackers/hero/CowPhone.svg deleted file mode 100644 index 816750908..000000000 --- a/public/hackers/hero/CowPhone.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/hackers/hero/DuckPhone.svg b/public/hackers/hero/DuckPhone.svg deleted file mode 100644 index 124077ec0..000000000 --- a/public/hackers/hero/DuckPhone.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/hackers/hero/SquiggleBorder.svg b/public/hackers/hero/SquiggleBorder.svg deleted file mode 100644 index df00d5279..000000000 --- a/public/hackers/hero/SquiggleBorder.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - -