Skip to content

Commit

Permalink
Fill in Trends + Skedge
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed May 15, 2024
1 parent 42a66a0 commit f51042e
Show file tree
Hide file tree
Showing 15 changed files with 42 additions and 51 deletions.
Binary file added public/skedge/icons8-aggregate-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/skedge/icons8-calendar-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/skedge/icons8-gold-medal-100.png
Binary file not shown.
Binary file added public/skedge/icons8-input-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/skedge/icons8-stopwatch-100.png
Binary file not shown.
Binary file removed public/skedge/icons8-test-tube-100.png
Binary file not shown.
Binary file added public/trends/icons8-aggregate-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/trends/icons8-gold-medal-100.png
Binary file not shown.
Binary file added public/trends/icons8-input-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/trends/icons8-scale-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/trends/icons8-stopwatch-100.png
Binary file not shown.
Binary file removed public/trends/icons8-test-tube-100.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Document() {
<meta name="twitter:card" content="summary" />
<meta name="twitter:domain" content="utdnebula.com" />
</Head>
<body className="font-inter text-haiti">
<body className="font-inter text-haiti bg-white">
<Main />
<NextScript />
</body>
Expand Down
46 changes: 21 additions & 25 deletions src/pages/projects/skedge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import type { StaticImageData } from 'next/image';
import Chrome from '@/../public/skedge/chrome.png';
import Firefox from '@/../public/skedge/firefox.png';

import medal from '@/../public/skedge/icons8-gold-medal-100.png';
import test_tube from '@/../public/skedge/icons8-test-tube-100.png';
import stopwatch from '@/../public/skedge/icons8-stopwatch-100.png';
import input from '@/../public/trends/icons8-input-100.png';
import aggregate from '@/../public/trends/icons8-aggregate-100.png';
import calendar from '@/../public/skedge/icons8-calendar-100.png';

interface Feature {
title: string;
Expand All @@ -24,27 +24,24 @@ interface Feature {

const features: Feature[] = [
{
title: 'Spreadsheet where?',
description:
"Bye-bye clunky spreadsheets, hello easy-peasy degree planning with simple click-and-drag action. You're welcome!",
img: medal,
alt: 'medal',
title: 'Multiple Sources',
description: 'Find grade distributions and Rate My Professors scores for any given class.',
img: input,
alt: 'input',
},
{
title: 'Slay your progress!',
title: 'Aggregate',
description:
"Not sure where you are in your degree plan? That's ok. Tracking your degree plan is now a piece of cake with our degree tracker.",
img: test_tube,
alt: 'test tube',
imgOffset: 'pb-5 pt-3',
'Powerful query abilities that aggregate grade and Rate My Professors data across several years to give you a more wholistic view.',
img: aggregate,
alt: 'aggregate',
},
{
title: 'Save Time',
title: 'Schedule Planner Integration',
description:
'Skedge streamlines academic planning, enabling you to map out your course requirements, track your progress, and adjust your plan as needed so you can focus on what you do best.',
img: stopwatch,
alt: 'stopwatch',
imgOffset: 'pb-5 pt-3',
'Direct integration means getting the exact information you need, right when you need it.',
img: calendar,
alt: 'calendar',
},
];

Expand All @@ -62,13 +59,12 @@ const Skedge = () => (
SKEDGE
</p>
<h1 className="text-5xl md:text-6xl font-bold text-center text-shadow">
Hi
Choose the perfect
<br />
Hi
classes for you
</h1>
<h2 className="text-3xl text-center text-shadow">
In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to
demonstrate the visual...
Easy access to all the information you need to plan you schedule.
</h2>
<div className="md:mx-4 lg:mx-8 xl:mx-16 rounded-t-2xl overflow-hidden md:mb-[-4rem] lg:mb-[-8rem] xl:mb-[-16rem] ">
<Image src={Cover} alt="Skedge screenshot" />
Expand Down Expand Up @@ -98,8 +94,8 @@ const Skedge = () => (
<div className="px-8 lg:px-16 xl:px-32 py-24 flex flex-col items-center gap-12">
<h2 className="text-5xl font-bold text-center">Features</h2>
<p className="text-3xl text-center">
In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to
demonstrate the visual...
Get all of your Rate My Professors and grade distribution data without ever leaving schedule
planner!
</p>
</div>
<div className="mx-8 lg:mx-16 xl:mx-32 pt-6 px-6 grid grid-rows-3 grid-cols-1 md:grid-rows-1 md:grid-cols-3 gap-8">
Expand All @@ -109,7 +105,7 @@ const Skedge = () => (
<Image
src={feature.img}
alt={feature.alt}
className={clsx('h-24 w-24 p-4', feature.imgOffset)}
className={clsx('h-10 w-10 m-7', feature.imgOffset)}
/>
</div>
<p className="text-2xl font-bold text-center">{feature.title}</p>
Expand Down
45 changes: 20 additions & 25 deletions src/pages/projects/trends.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import Cover from '@/../public/trends/cover.png';
import Image from 'next/image';
import type { StaticImageData } from 'next/image';

import medal from '@/../public/trends/icons8-gold-medal-100.png';
import test_tube from '@/../public/trends/icons8-test-tube-100.png';
import stopwatch from '@/../public/trends/icons8-stopwatch-100.png';
import input from '@/../public/trends/icons8-input-100.png';
import aggregate from '@/../public/trends/icons8-aggregate-100.png';
import scale from '@/../public/trends/icons8-scale-100.png';

interface Feature {
title: string;
Expand All @@ -21,27 +21,24 @@ interface Feature {

const features: Feature[] = [
{
title: 'Spreadsheet where?',
description:
"Bye-bye clunky spreadsheets, hello easy-peasy degree planning with simple click-and-drag action. You're welcome!",
img: medal,
alt: 'medal',
title: 'Multiple Sources',
description: 'Find grade distributions and Rate My Professors scores for any given class.',
img: input,
alt: 'input',
},
{
title: 'Slay your progress!',
title: 'Aggregate',
description:
"Not sure where you are in your degree plan? That's ok. Tracking your degree plan is now a piece of cake with our degree tracker.",
img: test_tube,
alt: 'test tube',
imgOffset: 'pb-5 pt-3',
'Powerful query abilities that aggregate grade and Rate My Professors data across several years to give you a more wholistic view.',
img: aggregate,
alt: 'aggregate',
},
{
title: 'Save Time',
title: 'Compare',
description:
'Trends streamlines academic planning, enabling you to map out your course requirements, track your progress, and adjust your plan as needed so you can focus on what you do best.',
img: stopwatch,
alt: 'stopwatch',
imgOffset: 'pb-5 pt-3',
'See data for multiple courses, professors, and categories on a single graph without switching tabs.',
img: scale,
alt: 'scale',
},
];

Expand All @@ -59,13 +56,12 @@ const Trends = () => (
TRENDS
</p>
<h1 className="text-5xl md:text-6xl font-bold text-center text-shadow">
Hi
Choose the perfect
<br />
Hi
classes for you
</h1>
<h2 className="text-3xl text-center text-shadow">
In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to
demonstrate the visual...
Easy access to all the information you need to plan you schedule.
</h2>
<div className="md:mx-4 lg:mx-8 xl:mx-16 rounded-t-2xl overflow-hidden md:mb-[-4rem] lg:mb-[-8rem] xl:mb-[-16rem] ">
<Image src={Cover} alt="Trends screenshot" />
Expand All @@ -83,8 +79,7 @@ const Trends = () => (
<div className="px-8 lg:px-16 xl:px-32 py-24 flex flex-col items-center gap-12">
<h2 className="text-5xl font-bold text-center">Features</h2>
<p className="text-3xl text-center">
In publishing and graphic design, Lorem ipsum is a placeholder text commonly used to
demonstrate the visual...
Our data analytics platform to help you make informed decisions about your coursework.
</p>
</div>
<div className="mx-8 lg:mx-16 xl:mx-32 pt-6 px-6 grid grid-rows-3 grid-cols-1 md:grid-rows-1 md:grid-cols-3 gap-8">
Expand All @@ -94,7 +89,7 @@ const Trends = () => (
<Image
src={feature.img}
alt={feature.alt}
className={clsx('h-24 w-24 p-4', feature.imgOffset)}
className={clsx('h-10 w-10 m-7', feature.imgOffset)}
/>
</div>
<p className="text-2xl font-bold text-center">{feature.title}</p>
Expand Down

0 comments on commit f51042e

Please sign in to comment.