Skip to content

Commit

Permalink
Reorder projects
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed May 9, 2024
1 parent 36d4e47 commit 7d30fda
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
6 changes: 3 additions & 3 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ const Footer = () => {
<Link className={linkClasses} href="/projects">
<h3 className="text-xl font-semibold mb-4">Projects</h3>
</Link>
<Link className={linkClasses} href="/projects/planner" target="_blank">
Planner
</Link>
<Link className={linkClasses} href="/projects/jupiter" target="_blank">
Jupiter
</Link>
Expand All @@ -57,6 +54,9 @@ const Footer = () => {
<Link className={linkClasses} href="/projects/api" target="_blank">
API & Platform
</Link>
<Link className={linkClasses} href="/projects/planner" target="_blank">
Planner
</Link>
</div>
<div className="flex flex-col items-start gap-3">
<h3 className="text-xl font-semibold mb-4">Resources</h3>
Expand Down
12 changes: 6 additions & 6 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ const parentItems: Array<ParentItem> = [
description: 'Get a rundown on all our projects',
iconSrc: Map,
},
{
name: 'Planner',
link: '/projects/planner',
description: 'Help plan degree and course requirements',
iconSrc: Pencil,
},
{
name: 'Jupiter',
link: '/projects/jupiter',
Expand All @@ -90,6 +84,12 @@ const parentItems: Array<ParentItem> = [
description: 'Integrate X+ years of historical UTD data into your applications',
iconSrc: Puzzle,
},
{
name: 'Planner',
link: '/projects/planner',
description: 'Help plan degree and course requirements',
iconSrc: Pencil,
},
],
},
];
Expand Down
28 changes: 14 additions & 14 deletions src/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ type Project = {

const PROJECTS_INFO: Project[] = [
{
title: 'Planner',
shortName: 'Planner',
title: 'Jupiter',
shortName: 'Jupiter',
description:
'Planner is a student-focused tool for creating and tracking degree plans, offering a user-friendly interface to simplify course mapping and progress tracking.',
url: '/projects/planner',
image: Planner,
alt: "A laptop displaying Planner's dashboard, showing a list of degree plan cards",
color: '#523DFF',
'Jupiter is the best way to get involved on campus. It’s easy to discover new organizations or exciting events to make the most of the on-campus experience.',
url: '/projects/jupiter',
image: Jupiter,
alt: "A laptop displaying Jupiter's dashboard, with a list of clubs and organizations.",
color: '#926FDB',
},
{
title: 'Sk.edge/Trends',
Expand All @@ -51,14 +51,14 @@ const PROJECTS_INFO: Project[] = [
color: '#FF6B4A',
},
{
title: 'Jupiter',
shortName: 'Jupiter',
title: 'Planner',
shortName: 'Planner',
description:
'Jupiter is the best way to get involved on campus. It’s easy to discover new organizations or exciting events to make the most of the on-campus experience.',
url: '/projects/jupiter',
image: Jupiter,
alt: "A laptop displaying Jupiter's dashboard, with a list of clubs and organizations.",
color: '#926FDB',
'Planner is a student-focused tool for creating and tracking degree plans, offering a user-friendly interface to simplify course mapping and progress tracking.',
url: '/projects/planner',
image: Planner,
alt: "A laptop displaying Planner's dashboard, showing a list of degree plan cards",
color: '#523DFF',
},
];

Expand Down
26 changes: 13 additions & 13 deletions src/pages/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ const Projects = () => (
<Header text="Projects" />
<section className="flex flex-col gap-y-20 md:px-40 px-5">
<section>
<Link href="/projects/planner" className="w-full">
<h2 className={headerStyle}>Planner</h2>
<Link href="/projects/jupiter">
<h2 className={headerStyle}>Jupiter</h2>
</Link>
<p className={infoStyle}>
Planner is a student-focused tool for creating and tracking degree plans, offering a
user-friendly interface to simplify course mapping and progress tracking.
Jupiter is the best way to get involved on campus. It’s easy to discover new organizations
or exciting events to make the most of the on-campus experience.
</p>
</section>
<section>
Expand All @@ -34,15 +34,6 @@ const Projects = () => (
RateMyProfessor data for professors and courses.
</p>
</section>
<section>
<Link href="/projects/jupiter">
<h2 className={headerStyle}>Jupiter</h2>
</Link>
<p className={infoStyle}>
Jupiter is the best way to get involved on campus. It’s easy to discover new organizations
or exciting events to make the most of the on-campus experience.
</p>
</section>
<section>
<Link href="/projects/skedge">
<h2 className={headerStyle}>Skedge</h2>
Expand All @@ -61,6 +52,15 @@ const Projects = () => (
courses, student organizations, and more.
</p>
</section>
<section>
<Link href="/projects/planner" className="w-full">
<h2 className={headerStyle}>Planner</h2>
</Link>
<p className={infoStyle}>
Planner is a student-focused tool for creating and tracking degree plans, offering a
user-friendly interface to simplify course mapping and progress tracking.
</p>
</section>
</section>
<Footer />
</>
Expand Down

0 comments on commit 7d30fda

Please sign in to comment.