diff --git a/public/skedge/icons8-aggregate-100.png b/public/skedge/icons8-aggregate-100.png new file mode 100644 index 0000000..b83edad Binary files /dev/null and b/public/skedge/icons8-aggregate-100.png differ diff --git a/public/skedge/icons8-calendar-100.png b/public/skedge/icons8-calendar-100.png new file mode 100644 index 0000000..a7efcc7 Binary files /dev/null and b/public/skedge/icons8-calendar-100.png differ diff --git a/public/skedge/icons8-gold-medal-100.png b/public/skedge/icons8-gold-medal-100.png deleted file mode 100644 index 24f605e..0000000 Binary files a/public/skedge/icons8-gold-medal-100.png and /dev/null differ diff --git a/public/skedge/icons8-input-100.png b/public/skedge/icons8-input-100.png new file mode 100644 index 0000000..0cff58f Binary files /dev/null and b/public/skedge/icons8-input-100.png differ diff --git a/public/skedge/icons8-stopwatch-100.png b/public/skedge/icons8-stopwatch-100.png deleted file mode 100644 index b851819..0000000 Binary files a/public/skedge/icons8-stopwatch-100.png and /dev/null differ diff --git a/public/skedge/icons8-test-tube-100.png b/public/skedge/icons8-test-tube-100.png deleted file mode 100644 index 98ad714..0000000 Binary files a/public/skedge/icons8-test-tube-100.png and /dev/null differ diff --git a/public/trends/icons8-aggregate-100.png b/public/trends/icons8-aggregate-100.png new file mode 100644 index 0000000..b83edad Binary files /dev/null and b/public/trends/icons8-aggregate-100.png differ diff --git a/public/trends/icons8-gold-medal-100.png b/public/trends/icons8-gold-medal-100.png deleted file mode 100644 index 24f605e..0000000 Binary files a/public/trends/icons8-gold-medal-100.png and /dev/null differ diff --git a/public/trends/icons8-input-100.png b/public/trends/icons8-input-100.png new file mode 100644 index 0000000..0cff58f Binary files /dev/null and b/public/trends/icons8-input-100.png differ diff --git a/public/trends/icons8-scale-100.png b/public/trends/icons8-scale-100.png new file mode 100644 index 0000000..26233f9 Binary files /dev/null and b/public/trends/icons8-scale-100.png differ diff --git a/public/trends/icons8-stopwatch-100.png b/public/trends/icons8-stopwatch-100.png deleted file mode 100644 index b851819..0000000 Binary files a/public/trends/icons8-stopwatch-100.png and /dev/null differ diff --git a/public/trends/icons8-test-tube-100.png b/public/trends/icons8-test-tube-100.png deleted file mode 100644 index 98ad714..0000000 Binary files a/public/trends/icons8-test-tube-100.png and /dev/null differ diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx index b91ec26..45f4e67 100644 --- a/src/pages/_document.tsx +++ b/src/pages/_document.tsx @@ -25,7 +25,7 @@ export default function Document() { - +
diff --git a/src/pages/projects/skedge.tsx b/src/pages/projects/skedge.tsx index c39ab9b..9a45967 100644 --- a/src/pages/projects/skedge.tsx +++ b/src/pages/projects/skedge.tsx @@ -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; @@ -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', }, ]; @@ -62,13 +59,12 @@ const Skedge = () => ( SKEDGE

- Hi + Choose the perfect
- Hi + classes for you

- 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.

Skedge screenshot @@ -98,8 +94,8 @@ const Skedge = () => (

Features

- 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!

@@ -109,7 +105,7 @@ const Skedge = () => ( {feature.alt}

{feature.title}

diff --git a/src/pages/projects/trends.tsx b/src/pages/projects/trends.tsx index f8b3efa..30fe1fc 100644 --- a/src/pages/projects/trends.tsx +++ b/src/pages/projects/trends.tsx @@ -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; @@ -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', }, ]; @@ -59,13 +56,12 @@ const Trends = () => ( TRENDS

- Hi + Choose the perfect
- Hi + classes for you

- 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.

Trends screenshot @@ -83,8 +79,7 @@ const Trends = () => (

Features

- 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.

@@ -94,7 +89,7 @@ const Trends = () => ( {feature.alt}

{feature.title}