Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update branding in home page and footer #29

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified ontology-manager-client/src/assets/logo_daad.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ontology-manager-client/src/assets/logo_glacier.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion ontology-manager-client/src/layout/footer.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import logoDaad from '../assets/logo_daad.png';
import logoDip from '../assets/logo_dip.png';
import logoLeibniz from '../assets/logo_leibniz.png';
import logoIpb from '../assets/logo_ipb.png';
import logoForeign from "../assets/logo_foreign_office.png";
import './footer.component.scss';

const Footer: React.FC = () => {
Expand All @@ -25,7 +26,8 @@ const Footer: React.FC = () => {
</div>
<div className='col-5' style={{display: 'flex', alignItems: 'center'}}>
<img alt="logo" src={logoGlacier} height="60" style={{marginRight: '3px', marginLeft: 'auto'}}></img>
<img alt="logo" src={logoDaad} height="60" style={{marginRight: '3px'}}></img>
<img alt="logo" src={logoForeign} height="80" style={{marginRight: '3px'}}></img>
<img alt="logo" src={logoDaad} height="80" style={{marginRight: '3px'}}></img>
<img alt="logo" src={logoDip} height="40" style={{marginRight: '3px'}}></img>
<img alt="logo" src={logoLeibniz} height="60" style={{marginRight: '3px'}}></img>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import heroSectionImage from '../../assets/img/hero-section-bg.png';
import logoGlacier from '../../assets/logo_glacier.png';
import logoIpb from '../../assets/logo_ipb.png';
import logoForeign from "../../assets/logo_foreign_office.png";
import { Button } from 'primereact/button';
import { Card } from 'primereact/card';
import neighborhoodExplorerImage from "../../assets/img/neighborhood-explorer.png";
Expand Down Expand Up @@ -88,6 +89,13 @@ const HomePageComponent: React.FC = () => {
<img alt="logo" src={logoGlacier} height="80" style={{marginRight: '3px', marginLeft: '50px'}}></img>
<img alt="logo" src={logoIpb} height="80" style={{marginRight: '3px', marginLeft: '50px'}}></img>

<div style={{marginTop: "15px"}}>

<small style={{textAlign: 'center'}}>funded by the German Federal Foreign Office</small>
<img alt="logo" src={logoForeign} height="100" style={{marginRight: '3px', marginLeft: '50px'}}></img>
</div>



<div style={{height: "20px"}}></div>
<small>
Expand Down
Loading