Skip to content

Commit

Permalink
Add uni logo
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-reis committed Oct 23, 2023
1 parent ee9c3d7 commit 50a8575
Show file tree
Hide file tree
Showing 2 changed files with 312 additions and 7 deletions.
22 changes: 15 additions & 7 deletions src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,30 @@ import {
TermsOfUseRoute
} from '../constants'

import { ReactComponent as LogoUni } from '../images/logo_unilu.svg';


const now = new Date()

const Footer = ()=> {

return (
<Container as="footer" className="py-5">
<Row>
<Col>Copyright © <a href="https://www.uni.lu/">University of Luxembourg</a> {now.getFullYear()}</Col>
<Col>
<Link to={TermsOfUseRoute.to}>{TermsOfUseRoute.label}</Link>
</Col>
<Col>
View sourcecode of this version: <a href={`https://github.com/C2DH/legionnaire/commit/${process.env.REACT_APP_GIT_REVISION}`}>
{process.env.REACT_APP_GIT_BRANCH}/{process.env.REACT_APP_GIT_REVISION}
<Col className="text-center" md={3}>
<a
href = "https://wwwfr.uni.lu/"
target = "_blank"
className = "logo"
rel = "noreferrer"
>
<LogoUni />
</a>
</Col>
<Col className="text-center">Copyright © <a href="https://www.uni.lu/">University of Luxembourg</a> {now.getFullYear()}</Col>
<Col className="text-center" md={3}>
<Link to={TermsOfUseRoute.to}>{TermsOfUseRoute.label}</Link>
</Col>
</Row>
</Container>
)
Expand Down
Loading

0 comments on commit 50a8575

Please sign in to comment.