From fa1090a8e2130c1c3f03591b4198c6dcf5bcbba3 Mon Sep 17 00:00:00 2001 From: Joseph Kotvas Date: Sun, 12 Nov 2023 19:03:20 -0500 Subject: [PATCH 1/2] Update About.jsx Update layout and content for About page --- src/pages/About.jsx | 110 ++++++++++++++++++++++++++------------------ 1 file changed, 64 insertions(+), 46 deletions(-) diff --git a/src/pages/About.jsx b/src/pages/About.jsx index db5b104..acb022c 100644 --- a/src/pages/About.jsx +++ b/src/pages/About.jsx @@ -5,47 +5,31 @@ import SvgComponent from "@/assets/brand/swooshes/svgWave"; import { team } from "@/constants"; import usePageTitle from "../hooks/usePageTitle"; import ChinguRectangle from "../assets/about/chingu-rectangle.png"; -import Yumi_1 from "../assets/about/yumi-standing-with-orange-apron-holding-fruit-basket.png"; -import Yumi_2 from "../assets/about/yumi-with-blue-apron-holding-brown-salad-bowl.png"; +import Yumi_2 from "@/assets/about/yumi-with-blue-apron-holding-brown-salad-bowl.png"; +import YumiWithBasket from "@/assets/brand/yumi-with-basket/YumiWithBasket"; const About = () => { usePageTitle("About"); return ( -
- {/*

About

*/} - - About Chingu - - - {/* START Project section */} +
- Chingu logo - -
- Yumi standing, wearing apron and holding fruit basket -

- We developed a unique web app with a distinctive brand and a - whimsical, animated design. YumYumYes! is intended to make recipe - browsing fun! Colorful mascots Yumi and Chef Carrots welcome - visitors to our pages, and delightful visual motifs including text - gradients, 3d colored balls, dashed lines and gentle curves are - intended to make the app feel more alive and engaging. -

- - <> +
+
+ + About YumYumYes! + +

+ YumYumYes! is intended to make recipe browsing fun! +

+

+ We developed a unique web app with a distinctive brand and a + whimsical, animated design. Colorful mascots Yumi and Chef Carrots + welcome visitors to our pages, and delightful visual motifs + including text gradients, 3d colored balls, dashed lines and + gentle curves are intended to make the app feel more alive and + engaging. +

YumYumYes! allows users to search for recipes by ingredient and filter by useful tags such as difficulty, occasion, etc. The app @@ -58,8 +42,10 @@ const About = () => { care to make it intuitive for all users, and accessible to users with different abilities.

- - +
+
+ +
{/* Display top of wave between sections */} @@ -68,11 +54,14 @@ const About = () => { {/* END Project section */} {/* START Team section */} -
+
Meet the YumYumTeam! @@ -81,10 +70,10 @@ const About = () => { These are the exceptional team members that made YumYumYes! possible.

-
+
{team.map(({ name, role, summary, image, socials }, index) => (
@@ -132,7 +121,7 @@ const About = () => { // Display top of wave // but don't display top of wave after last team member index !== team.length - 1 && ( - + ) } @@ -140,7 +129,7 @@ const About = () => { // Display bottom of wave // but don't display bottom of wave before first team member index !== 0 && ( - + ) }
@@ -148,19 +137,48 @@ const About = () => {
{/* Display bottom of wave in between sections */} -
-
+
+
{/* Display Yumi_2 image between sections */} Yumi wearing blue apron holding brown salad bowl +
{/* END Team section */} +
+ +
+ + About Chingu + +
+

+ {`Chingu is a community of developers who are passionate about + learning, helping others, and collaborating on projects. It is a + remote, self-organizing, project-based learning platform. Chingu + helps you to build your portfolio and network while collaborating on + real-world projects with remote team members. "Chingus" are + motivated learners who are self-directed and take responsibility for + their own learning.`} +

+
+
+ Chingu logo +
+
+
+
+
); }; From 8b256831bab3400b339e1252de4ef26d31102542 Mon Sep 17 00:00:00 2001 From: joekotvas Date: Sun, 12 Nov 2023 19:16:01 -0500 Subject: [PATCH 2/2] refactor(about): rename variable --- src/pages/About.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/About.jsx b/src/pages/About.jsx index acb022c..a1e8ac1 100644 --- a/src/pages/About.jsx +++ b/src/pages/About.jsx @@ -5,7 +5,7 @@ import SvgComponent from "@/assets/brand/swooshes/svgWave"; import { team } from "@/constants"; import usePageTitle from "../hooks/usePageTitle"; import ChinguRectangle from "../assets/about/chingu-rectangle.png"; -import Yumi_2 from "@/assets/about/yumi-with-blue-apron-holding-brown-salad-bowl.png"; +import Yumi from "@/assets/about/yumi-with-blue-apron-holding-brown-salad-bowl.png"; import YumiWithBasket from "@/assets/brand/yumi-with-basket/YumiWithBasket"; const About = () => { @@ -145,7 +145,7 @@ const About = () => { {/* Display Yumi_2 image between sections */} Yumi wearing blue apron holding brown salad bowl