Skip to content

Commit

Permalink
#38 removing comments and updating alt
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed May 5, 2021
1 parent 93b8535 commit 5302566
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/components/homepage/index-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ export const ImpactStats = styled.div`
@media (min-width: ${dimensions.maxwidthTablet}px) {
display: flex;
// justify-content: center;
margin-top: 132px;
margin-bottom: 80px;
}
Expand Down
7 changes: 5 additions & 2 deletions src/components/homepage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ export default function HomePage({ data }) {
</FutureSection>

<ImpactImage>
<img src={data.impact_image.url} />
<img
alt="Impact Section Backgroud Image"
src={data.impact_image.url}
/>
</ImpactImage>
<ImpactSection>
<div>
Expand All @@ -103,7 +106,7 @@ export default function HomePage({ data }) {
</ImpactHeader>
<ImpactStats>
{data.impact_example.map((example, idx) => (
<ImpactExample>
<ImpactExample key={idx}>
<ImpactStat>
<H1>{example.impact_big_text}</H1>
<P>{example.impact_small_text}</P>
Expand Down
8 changes: 4 additions & 4 deletions src/pages/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const query = graphql`
data {
find_button_destination
find_button_text
find_description
# find_description
find_header
header_image {
url
Expand All @@ -27,9 +27,9 @@ export const query = graphql`
height
}
}
how_description {
text
}
# how_description {
# text
# }
how_header
how_images {
how_image {
Expand Down

0 comments on commit 5302566

Please sign in to comment.