From 8eadb3ad6e7edbb7f48fabf4574e1dd1051d675a Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 18 Sep 2023 21:13:07 -1000 Subject: [PATCH 01/20] Clients js: Implemented Image from next/image with relevant alt tag for accessibilty --- src/components/Clients.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Clients.js b/src/components/Clients.js index 4026d97..50a6f77 100644 --- a/src/components/Clients.js +++ b/src/components/Clients.js @@ -1,4 +1,6 @@ import React from 'react' +import Image from 'next/image' + const Clients = () => { return ( @@ -9,11 +11,13 @@ const Clients = () => {
- This is a client logo for The Hawaii Zoning Atlus - This is a client logo for The Civil Beat - Law Center For Public Interest From 62e126b379c321911088853550e18ea89e187af4 Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 18 Sep 2023 21:21:08 -1000 Subject: [PATCH 02/20] HomePage: Implemented Image from next/image with relevant alt tag for accessibilty --- src/components/HomePage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/HomePage.js b/src/components/HomePage.js index b9af0c0..0179ad7 100644 --- a/src/components/HomePage.js +++ b/src/components/HomePage.js @@ -1,4 +1,5 @@ import React from 'react' +import Image from 'next/image' import { FaMeetup } from "react-icons/fa"; import NavBar from './NavBar'; @@ -8,7 +9,7 @@ const HomePage = () => {
- + This is a picture of an island with palm trees, a pineapple, coconut, surfboard, flower, starfish, shells, river, sandals, and a laptop.
From 35305b07a225f0fc2c26c2c6ee3c67b2e7dbc3bf Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 18 Sep 2023 21:27:07 -1000 Subject: [PATCH 03/20] Logo: Implemented Image from next/image with relevant alt tag for accessibilty --- src/components/Logo.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/Logo.js b/src/components/Logo.js index e439340..38c79db 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -1,6 +1,6 @@ -import Link from 'next/link' import React from 'react' - +import Link from 'next/link' +import Image from 'next/image' @@ -8,10 +8,11 @@ const Logo = () => { return ( - This is a logo of Code with Aloha represented by the name, as well as an orange lightbulb with the torch like yellow flame akin to a sunset scene. + /> ); From 647d5108d18b1bd8c4076e997b4def500371246e Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 18 Sep 2023 21:28:51 -1000 Subject: [PATCH 04/20] OurFocus: Implemented Image from next/image --- src/components/OurFocus.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/OurFocus.js b/src/components/OurFocus.js index 8890cf8..9a71f1f 100644 --- a/src/components/OurFocus.js +++ b/src/components/OurFocus.js @@ -1,11 +1,12 @@ import React from "react"; +import Image from 'next/image' const TextBlock = ({ src, alt, title, text, className = "" }) => { return (
- {alt} + {alt}

{title} From e620eaa0971bd671d5a3ca87c8cd35484fb48330 Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 18 Sep 2023 21:40:31 -1000 Subject: [PATCH 05/20] Projects: Implemented Image from next/image with relevant alt tags for accessibilty --- src/components/Projects.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Projects.js b/src/components/Projects.js index 6b9d95d..6ecb60e 100644 --- a/src/components/Projects.js +++ b/src/components/Projects.js @@ -1,4 +1,5 @@ import React, { useState } from "react"; +import Image from 'next/image' import HistoricalProjects from "./HistoricalProjects"; import Clients from "./Clients"; @@ -10,7 +11,7 @@ export const ProjectCard = ({ src, title, text, className = "" , handleClick}) = " onClick={handleClick} > - + List of projects including Hawaii Zoning Atlas, Habitat for Humanity, and Hierr (Hawaii Economic Recovery & Resilience )
{title}

{text}

@@ -40,7 +41,8 @@ const Projects = () => { >
) : null} - A picture of a folder From 653f46ba4caa16afb67e70e602f22d893fb425cc Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 18 Sep 2023 21:42:27 -1000 Subject: [PATCH 06/20] Team: Implemented Imsge from next/image --- src/components/Team.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Team.js b/src/components/Team.js index f33d909..f0e779d 100644 --- a/src/components/Team.js +++ b/src/components/Team.js @@ -1,10 +1,11 @@ import React from "react"; +import Image from 'next/image' import { AiOutlineMail } from "react-icons/ai"; const TeamMember = ({ src, name }) => { return (
- Date: Mon, 18 Sep 2023 21:46:24 -1000 Subject: [PATCH 07/20] What to Expect: Implemented Image from next/image and included alt tags --- src/components/WhatToExpect.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/WhatToExpect.js b/src/components/WhatToExpect.js index 69ca4f0..814ccf4 100644 --- a/src/components/WhatToExpect.js +++ b/src/components/WhatToExpect.js @@ -1,10 +1,10 @@ import React from 'react' - +import Image from 'next/image' const TextBlock =({src, title, text}) => { return (
- + Decorational images representing the Meet & Greet, Debrief on Projects and Announcements, and Participation in breakout rooms
Date: Tue, 19 Sep 2023 21:00:29 -1000 Subject: [PATCH 08/20] Update src/components/HomePage.js Co-authored-by: Michael Tamaki --- src/components/HomePage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HomePage.js b/src/components/HomePage.js index 0179ad7..683d1fd 100644 --- a/src/components/HomePage.js +++ b/src/components/HomePage.js @@ -9,7 +9,7 @@ const HomePage = () => {
- This is a picture of an island with palm trees, a pineapple, coconut, surfboard, flower, starfish, shells, river, sandals, and a laptop. +
From 33a3416041498b153d2488eb4b6d5cb872c837a4 Mon Sep 17 00:00:00 2001 From: Kobe Buckley Date: Tue, 19 Sep 2023 21:02:50 -1000 Subject: [PATCH 09/20] Update src/components/Logo.js Co-authored-by: Michael Tamaki --- src/components/Logo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Logo.js b/src/components/Logo.js index 38c79db..2dd90b1 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -9,7 +9,7 @@ const Logo = () => { This is a logo of Code with Aloha represented by the name, as well as an orange lightbulb with the torch like yellow flame akin to a sunset scene. From ed32e95c4ac11687027c117292f47e872b97eaef Mon Sep 17 00:00:00 2001 From: Kobe Date: Tue, 19 Sep 2023 21:31:50 -1000 Subject: [PATCH 10/20] Updated -> alt changes && Our Focus + Our Projects alt format matched --- src/components/Clients.js | 4 ++-- src/components/Logo.js | 2 +- src/components/Projects.js | 7 +++++-- src/components/WhatToExpect.js | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/Clients.js b/src/components/Clients.js index 50a6f77..93d5ff6 100644 --- a/src/components/Clients.js +++ b/src/components/Clients.js @@ -12,12 +12,12 @@ const Clients = () => {
This is a client logo for The Hawaii Zoning Atlus This is a client logo for The Civil Beat - Law Center For Public Interest diff --git a/src/components/Logo.js b/src/components/Logo.js index 2dd90b1..1ec5c54 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -9,7 +9,7 @@ const Logo = () => { Code with Aloha diff --git a/src/components/Projects.js b/src/components/Projects.js index 6ecb60e..f1f5877 100644 --- a/src/components/Projects.js +++ b/src/components/Projects.js @@ -11,7 +11,7 @@ export const ProjectCard = ({ src, title, text, className = "" , handleClick}) = " onClick={handleClick} > - List of projects including Hawaii Zoning Atlas, Habitat for Humanity, and Hierr (Hawaii Economic Recovery & Resilience ) + {alt}
{title}

{text}

@@ -42,7 +42,7 @@ const Projects = () => { ) : null} A picture of a folder @@ -59,6 +59,7 @@ const Projects = () => {
{ { return (
- Decorational images representing the Meet & Greet, Debrief on Projects and Announcements, and Participation in breakout rooms +
Date: Tue, 19 Sep 2023 22:11:12 -1000 Subject: [PATCH 11/20] all files include the proper width and height dimensions (currently using the ='' format) --- src/components/Clients.js | 4 ++++ src/components/HomePage.js | 2 +- src/components/Logo.js | 2 ++ src/components/OurFocus.js | 8 +++++++- src/components/Projects.js | 11 ++++++++++- src/components/Team.js | 11 +++++++---- src/components/WhatToExpect.js | 8 +++++++- 7 files changed, 38 insertions(+), 8 deletions(-) diff --git a/src/components/Clients.js b/src/components/Clients.js index 93d5ff6..889fc7c 100644 --- a/src/components/Clients.js +++ b/src/components/Clients.js @@ -14,11 +14,15 @@ const Clients = () => { Hawaii Zoning Atlus The Civil Beat - Law Center For Public Interest
diff --git a/src/components/HomePage.js b/src/components/HomePage.js index 683d1fd..cb369c9 100644 --- a/src/components/HomePage.js +++ b/src/components/HomePage.js @@ -9,7 +9,7 @@ const HomePage = () => {
- +
diff --git a/src/components/Logo.js b/src/components/Logo.js index 1ec5c54..1cd2e8b 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -11,6 +11,8 @@ const Logo = () => { Code with Aloha logo diff --git a/src/components/OurFocus.js b/src/components/OurFocus.js index 9a71f1f..9adb69f 100644 --- a/src/components/OurFocus.js +++ b/src/components/OurFocus.js @@ -6,7 +6,7 @@ const TextBlock = ({ src, alt, title, text, className = "" }) => {
- {alt} + {alt}

{title} @@ -31,6 +31,8 @@ const OurFocus = () => { { { { @@ -11,7 +12,7 @@ export const ProjectCard = ({ src, title, text, className = "" , handleClick}) = " onClick={handleClick} > - {alt} + {alt}
{title}

{text}

@@ -44,6 +45,8 @@ const Projects = () => {

@@ -60,6 +63,8 @@ const Projects = () => { { {
@@ -39,10 +42,10 @@ const Team = () => {

codewithaloha@gmail.com

{" "}
- - - - + + + +
diff --git a/src/components/WhatToExpect.js b/src/components/WhatToExpect.js index 488d51c..dc0d37a 100644 --- a/src/components/WhatToExpect.js +++ b/src/components/WhatToExpect.js @@ -4,7 +4,7 @@ import Image from 'next/image' const TextBlock =({src, title, text}) => { return (
- +
{
{
- {alt} +

{title} diff --git a/src/components/Projects.js b/src/components/Projects.js index d59c293..023ffa5 100644 --- a/src/components/Projects.js +++ b/src/components/Projects.js @@ -12,7 +12,7 @@ export const ProjectCard = ({ src, title, text, className = "" , handleClick}) = " onClick={handleClick} > - {alt} +

{title}

{text}

diff --git a/src/components/Team.js b/src/components/Team.js index 0f70693..bfc212c 100644 --- a/src/components/Team.js +++ b/src/components/Team.js @@ -7,9 +7,6 @@ const TeamMember = ({ src, name }) => {
diff --git a/src/components/WhatToExpect.js b/src/components/WhatToExpect.js index dc0d37a..70cd4d9 100644 --- a/src/components/WhatToExpect.js +++ b/src/components/WhatToExpect.js @@ -4,7 +4,7 @@ import Image from 'next/image' const TextBlock =({src, title, text}) => { return (
- +
Date: Tue, 19 Sep 2023 23:21:13 -1000 Subject: [PATCH 13/20] fill broke it; need to go back through with npm run dev running and check over details --- src/components/Clients.js | 4 ++-- src/components/HistoricalProjects.js | 4 ++-- src/components/HomePage.js | 2 +- src/components/Logo.js | 2 +- src/components/OurFocus.js | 8 ++++---- src/components/Projects.js | 12 ++++++------ src/components/WhatToExpect.js | 8 ++++---- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/components/Clients.js b/src/components/Clients.js index 889fc7c..3abe9c8 100644 --- a/src/components/Clients.js +++ b/src/components/Clients.js @@ -13,14 +13,14 @@ const Clients = () => {
Hawaii Zoning Atlus The Civil Beat - Law Center For Public Interest {
{
- +
diff --git a/src/components/Logo.js b/src/components/Logo.js index 1cd2e8b..ee03438 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -10,7 +10,7 @@ const Logo = () => { Code with Aloha logo {
- +

{title} @@ -29,7 +29,7 @@ const OurFocus = () => { Our focus{" "}

{ /> { /> {title}

{text}

@@ -44,9 +44,9 @@ const Projects = () => {

@@ -61,7 +61,7 @@ const Projects = () => {
{ /> { /> { return (
- +
{
{ /> { /> Date: Thu, 21 Sep 2023 08:52:22 -1000 Subject: [PATCH 14/20] general styling fixes with image --- src/components/Clients.js | 2 +- src/components/HistoricalProjects.js | 6 +++++- src/components/HomePage.js | 3 ++- src/components/Logo.js | 4 ++-- src/components/OurFocus.js | 4 ++-- src/components/Projects.js | 7 +++---- src/components/WhatToExpect.js | 4 ++-- 7 files changed, 17 insertions(+), 13 deletions(-) diff --git a/src/components/Clients.js b/src/components/Clients.js index 3abe9c8..7b1a86f 100644 --- a/src/components/Clients.js +++ b/src/components/Clients.js @@ -26,7 +26,7 @@ const Clients = () => { className="h-full w-1/3 lg:w-1/4 " />
-
+
); } diff --git a/src/components/HistoricalProjects.js b/src/components/HistoricalProjects.js index a0b71e1..241ebc2 100644 --- a/src/components/HistoricalProjects.js +++ b/src/components/HistoricalProjects.js @@ -10,13 +10,17 @@ const HistoricalProjects = () => {

{ return ( -
+
+
diff --git a/src/components/Logo.js b/src/components/Logo.js index ee03438..6420b1d 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -10,10 +10,10 @@ const Logo = () => { Code with Aloha logo diff --git a/src/components/OurFocus.js b/src/components/OurFocus.js index 197217e..4eee8bd 100644 --- a/src/components/OurFocus.js +++ b/src/components/OurFocus.js @@ -1,12 +1,12 @@ import React from "react"; import Image from 'next/image' -const TextBlock = ({ src, alt, title, text, className = "" }) => { +const TextBlock = ({ src, alt, width, height, title, text, className = "" }) => { return (
- + {alt}

{title} diff --git a/src/components/Projects.js b/src/components/Projects.js index 4d90b5a..d8d2c21 100644 --- a/src/components/Projects.js +++ b/src/components/Projects.js @@ -2,17 +2,16 @@ import React, { useState } from "react"; import Image from 'next/image' import HistoricalProjects from "./HistoricalProjects"; import Clients from "./Clients"; -import { headers } from "next/dist/client/components/headers"; -export const ProjectCard = ({ src, title, text, className = "" , handleClick}) => { +export const ProjectCard = ({ src, alt, width, height, title, text, className = "" , handleClick}) => { return (
- + {alt}
{title}

{text}

@@ -43,8 +42,8 @@ const Projects = () => { ) : null} { +const TextBlock =({src, alt, width, height, title, text}) => { return (
- +
Date: Thu, 21 Sep 2023 09:01:16 -1000 Subject: [PATCH 15/20] updated images --- src/components/WhatToExpect.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/WhatToExpect.js b/src/components/WhatToExpect.js index 641355e..a413ed4 100644 --- a/src/components/WhatToExpect.js +++ b/src/components/WhatToExpect.js @@ -26,7 +26,7 @@ const WhatToExpect = () => { What to expect at a meeting{" "}
-
+
{ milestones on the Focus Project or explore projects in our Discovery Track." /> -
From 2caa169058efbc85e3cf46273b43405c57c389ac Mon Sep 17 00:00:00 2001 From: Kobe Date: Thu, 21 Sep 2023 09:03:16 -1000 Subject: [PATCH 16/20] some stretched images still exist --- src/components/WhatToExpect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WhatToExpect.js b/src/components/WhatToExpect.js index a413ed4..7c59d17 100644 --- a/src/components/WhatToExpect.js +++ b/src/components/WhatToExpect.js @@ -1,7 +1,7 @@ import React from 'react' import Image from 'next/image' -const TextBlock =({src, alt, width, height, title, text}) => { +const TextBlock =({src, width, height, title, text}) => { return (
From dd27cda82985f3c954278cef0c1f329883580ed7 Mon Sep 17 00:00:00 2001 From: Kobe Date: Thu, 21 Sep 2023 11:46:19 -1000 Subject: [PATCH 17/20] one, two, and three are now no longer stretched --- src/components/WhatToExpect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WhatToExpect.js b/src/components/WhatToExpect.js index 7c59d17..13c00d9 100644 --- a/src/components/WhatToExpect.js +++ b/src/components/WhatToExpect.js @@ -4,7 +4,7 @@ import Image from 'next/image' const TextBlock =({src, width, height, title, text}) => { return (
- +
Date: Thu, 21 Sep 2023 11:50:27 -1000 Subject: [PATCH 18/20] ALL images updated and formatted without stretched look --- src/components/Projects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Projects.js b/src/components/Projects.js index d8d2c21..4f8e31d 100644 --- a/src/components/Projects.js +++ b/src/components/Projects.js @@ -46,7 +46,7 @@ const Projects = () => { alt="" width='500' height='500' - className="lg:h-40 h-24 mt-20" + className="lg:h-40 lg:w-40 h-24 mt-20" />

Active projects From e6f4587476262bafef29842125f8748bb8fc62cb Mon Sep 17 00:00:00 2001 From: Kobe Date: Sun, 24 Sep 2023 19:43:24 -1000 Subject: [PATCH 19/20] updated width and height values to represent proper prop types such as number, rather than string values --- src/components/Clients.js | 8 ++++---- src/components/HistoricalProjects.js | 8 ++++---- src/components/HomePage.js | 2 +- src/components/Logo.js | 4 ++-- src/components/OurFocus.js | 12 ++++++------ src/components/Projects.js | 12 ++++++------ src/components/WhatToExpect.js | 12 ++++++------ 7 files changed, 29 insertions(+), 29 deletions(-) diff --git a/src/components/Clients.js b/src/components/Clients.js index 7b1a86f..fc43384 100644 --- a/src/components/Clients.js +++ b/src/components/Clients.js @@ -14,15 +14,15 @@ const Clients = () => { Hawaii Zoning Atlus The Civil Beat - Law Center For Public Interest

diff --git a/src/components/HistoricalProjects.js b/src/components/HistoricalProjects.js index 241ebc2..6a47428 100644 --- a/src/components/HistoricalProjects.js +++ b/src/components/HistoricalProjects.js @@ -11,16 +11,16 @@ const HistoricalProjects = () => {
{
- +
diff --git a/src/components/Logo.js b/src/components/Logo.js index 6420b1d..cd0d8d4 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -11,8 +11,8 @@ const Logo = () => { Code with Aloha logo diff --git a/src/components/OurFocus.js b/src/components/OurFocus.js index 4eee8bd..be55355 100644 --- a/src/components/OurFocus.js +++ b/src/components/OurFocus.js @@ -31,8 +31,8 @@ const OurFocus = () => { {

@@ -62,8 +62,8 @@ const Projects = () => { { {