Skip to content

Commit

Permalink
Many small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jbogdani committed May 6, 2024
1 parent 7f5491d commit cec1cd5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 32 deletions.
25 changes: 0 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"react-helmet": "^6.1.0",
"react-helmet-async": "^1.2.2",
"react-leaflet": "^3.2.5",
"react-leaflet-coordinates": "^1.0.1",
"sass": "^1.49.7",
"styled-components": "^5.3.3"
}
Expand Down
8 changes: 4 additions & 4 deletions src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Footer = () => {
<StaticImage
src="../../static/logos/logo_bn.png"
alt="Logo Borj-e Kabotar"
width="100"
width={100}
placeholder="blurred"
objectFit="contain"
/>
Expand All @@ -38,7 +38,7 @@ const Footer = () => {
<StaticImage
src="../../static/logos/ismeo.png"
alt="Logo Borj-e Kabotar"
width="170"
width={170}
placeholder="blurred"
objectFit="contain"
className="partner"
Expand All @@ -48,7 +48,7 @@ const Footer = () => {
<StaticImage
src="../../static/logos/min_aff_est.png"
alt="Logo Borj-e Kabotar"
width="200"
width={200}
placeholder="blurred"
objectFit="contain"
/>
Expand All @@ -57,7 +57,7 @@ const Footer = () => {
<StaticImage
src="../../static/logos/icar_logo.png"
alt="Logo Borj-e Kabotar"
width="100"
width={100}
placeholder="blurred"
objectFit="contain"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/pubblication.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const project = ({ data }) => {
src="../../static/images/pubblications_background.jpg"
alt="Pubblication"
objectFit="cover"
style={{ width: "300vh", height: "50vh", filter: "brightness(60%)" }}
style={{ width: '300vh', height: "50vh", filter: "brightness(60%)" }}
/>
{bibliography.map(({ node }, k) => {
return <h2>{node.frontmatter.title}</h2>;
return <h2 key={k}>{node.frontmatter.title}</h2>;
})}
</div>

Expand Down

0 comments on commit cec1cd5

Please sign in to comment.