diff --git a/src/components/Footer.js b/src/components/Footer.js index c0b8eae..14498db 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -3,6 +3,8 @@ import { Link } from "gatsby" import { Container, Row, Col } from "react-bootstrap" import { useSiteMetadata } from "../hooks" import { Github } from "iconoir-react" +import LogoFnr from "./_svg/LogoFnr" +import LogoSnsf from "./_svg/LogoSnsf" const getGithubRepoUrl = (gitRepo, gitRevision) => { // Regular expression to extract the repository path from the gitRepo string @@ -53,6 +55,14 @@ const Footer = () => { + + + + + + + + ) diff --git a/src/components/_svg/LogoFnr.js b/src/components/_svg/LogoFnr.js new file mode 100644 index 0000000..c362f0a --- /dev/null +++ b/src/components/_svg/LogoFnr.js @@ -0,0 +1,31 @@ +import React from "react" + +const LogoFnr = ({ color = "var(--impresso-color-black)", width = 160 }) => { + const ratio = 199.93 / 33.99 + const height = width / ratio + + return ( +
+ + + + + +
+ ) +} + +export default LogoFnr diff --git a/src/components/_svg/LogoSnsf.js b/src/components/_svg/LogoSnsf.js new file mode 100644 index 0000000..4430a4f --- /dev/null +++ b/src/components/_svg/LogoSnsf.js @@ -0,0 +1,31 @@ +import React from "react" + +const LogoSnsf = ({ color = "var(--impresso-color-black)", width = 160 }) => { + const ratio = 199.99 / 44.94 + const height = width / ratio + + return ( +
+ + + + + +
+ ) +} + +export default LogoSnsf