Skip to content

Commit

Permalink
fix img src for Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandra-Haynes committed Oct 5, 2023
1 parent 5b95778 commit 2abce07
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 32 deletions.
10 changes: 5 additions & 5 deletions src/components/Clients.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ const Clients = () => {

<div className="flex items-center justify-center pb-40">
<Image
alt='Hawaii Zoning Atlus'
src="/./assets/projectsAssets/client1.png"
alt="Hawaii Zoning Atlus"
src="/CWAWebsite/assets/projectsAssets/client1.png"
width={500}
height={500}
className="h-full w-1/3 lg:w-1/4 "
/>
<Image
alt='The Civil Beat - Law Center For Public Interest'
src="/./assets/projectsAssets/client2.png"
alt="The Civil Beat - Law Center For Public Interest"
src="/CWAWebsite/assets/projectsAssets/client2.png"
width={500}
height={500}
className="h-full w-1/3 lg:w-1/4 "
/>
</div>
</div>
</div>
);
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/HistoricalProjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ const HistoricalProjects = () => {
</h2>
<div className=" flex gap-10 flex-col xl:flex-row ">
<ProjectCard
src="/./assets/projectsAssets/foodoasis.jpg"
src="/CWAWebsite/assets/projectsAssets/foodoasis.jpg"
width={400}
height={300}
title="FOOD OASIS"
text="Resource for Community Food Help"
/>

<ProjectCard
src="/./assets/projectsAssets/uipa.jpg"
src="/CWAWebsite/assets/projectsAssets/uipa.jpg"
width={400}
height={300}
title="UIPA.ORG"
Expand Down
20 changes: 9 additions & 11 deletions src/components/Logo.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,15 @@ import Image from 'next/image'

const Logo = () => {
return (

<Link href="/" whileHover={{ scale: 1.5 }}>
<Image
alt='Code with Aloha logo'
src="/logo.png"
width={500}
height={500}
className="w-full xl:max-h-24 max-h-[3rem] cursor-pointer m-2 hover:animate-pulse"
/>
</Link>

<Link href="/" whileHover={{ scale: 1.5 }}>
<Image
alt="Code with Aloha logo"
src="/CWAWebsite/logo.png"
width={500}
height={500}
className="w-full xl:max-h-24 max-h-[3rem] cursor-pointer m-2 hover:animate-pulse"
/>
</Link>
);
}

Expand Down
6 changes: 3 additions & 3 deletions src/components/OurFocus.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const OurFocus = () => {
Our focus{" "}
</h2>
<TextBlock
src="/./assets/meet.png"
src="/CWAWebsite/assets/meet.png"
alt="meet illustration"
width={500}
height={283}
Expand All @@ -40,7 +40,7 @@ const OurFocus = () => {
/>

<TextBlock
src="/./assets/progress.png"
src="/CWAWebsite/assets/progress.png"
alt="make an impact illustration"
width={500}
height={266}
Expand All @@ -51,7 +51,7 @@ const OurFocus = () => {
/>

<TextBlock
src="/./assets/experience.png"
src="/CWAWebsite/assets/experience.png"
alt="gain experience illustration"
width={500}
height={215}
Expand Down
12 changes: 6 additions & 6 deletions src/components/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const Projects = () => {
className=" flex flex-col items-center xl:p-20 px-5 bg-gradient-to-br from-cyan-200 to bg-white-200"
>
<Image
src="/assets/projectsAssets/projects.png"
src="/CWAWebsite/assets/projectsAssets/projects.png"
alt="Project icon"
className="mt-20"
width={50}
Expand All @@ -143,13 +143,13 @@ const Projects = () => {
<div className=" flex pt-10 gap-20 flex-col xl:flex-row">
<ProjectCard
id="hza"
src="/assets/projectsAssets/HawaiiZoningAtlas.png"
src="/CWAWebsite/assets/projectsAssets/HawaiiZoningAtlas.png"
title="Hawaii Zoning Atlas"
text="An interactive map exploring how restrictive zoning laws can make it
difficult to build diverse, affordable housing."
about="Building an online-interactive map to educate the public on zoning and
land use issues. Our vision is to connect researchers, educators, and advocates."
goals="The project&apos;s goals are to build an interactive online map to educate
goals="The project's goals are to build an interactive online map to educate
the public on zoning and land use issues and generate talking points
for affordable housing advocates in Hawaii. Our second goal is to create
a website that serves as a hub for the resulting coalition of researchers,
Expand All @@ -161,7 +161,7 @@ const Projects = () => {

<ProjectCard
id="hfu"
src="/assets/projectsAssets/habitat-full.jpg"
src="/CWAWebsite/assets/projectsAssets/habitat-full.jpg"
title="Habitat for Humanity"
text=" A nonprofit organization that helps people
in your community and around the world build or improve a place they
Expand All @@ -180,15 +180,15 @@ const Projects = () => {

<ProjectCard
id="hierr"
src="/assets/projectsAssets/HIERR.png"
src="/CWAWebsite/assets/projectsAssets/HIERR.png"
title="HIERR"
text="The HIERR (Hawaiʻi Economic Recovery & Resilience) Project aims to enable actions toward a more resilient,
equitable, and sustainable economy."
about="The HIERR Project aims to enable actions toward a more resilient, equitable, and sustainable economy.
This planning process is designed to learn from the economic impacts and experiences of hardship associated
with the COVID-19 pandemic to inform and enable actions toward a more resilient, equitable, and sustainable economy."
goals="The CFH project is focused on developing a digital engagement platform via Pol.is and
onboarding materials to solicit resident sentiments on vision and value statements for Hawaii&apos;s
onboarding materials to solicit resident sentiments on vision and value statements for Hawaii's
economic future. Residents will be invited to in-person workshops for onboarding and introduction
to the established Pol.is, where they will be invited to interact with seeded vision and value
statements as well as add new ones."
Expand Down
8 changes: 3 additions & 5 deletions src/components/WhatToExpect.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const WhatToExpect = () => {

<div className="flex gap-10 flex-col xl:flex-row lg:pb-40 ">
<TextBlock
src="/./assets/one.png"
src="/CWAWebsite/assets/one.png"
width={500}
height={500}
title="Meet & Greet"
Expand All @@ -39,7 +39,7 @@ const WhatToExpect = () => {
/>

<TextBlock
src="/./assets/two.png"
src="/CWAWebsite/assets/two.png"
width={500}
height={500}
title="Debrief on projects and announcements"
Expand All @@ -52,7 +52,7 @@ const WhatToExpect = () => {
/>

<TextBlock
src="/./assets/three.png"
src="/CWAWebsite/assets/three.png"
width={500}
height={500}
title="Participate in breakout rooms"
Expand All @@ -63,9 +63,7 @@ const WhatToExpect = () => {
milestones on the Focus Project or explore projects in our
Discovery Track."
/>

</div>

</div>
);
}
Expand Down

0 comments on commit 2abce07

Please sign in to comment.