Skip to content

Commit

Permalink
Merge pull request #251 from performant-software/feature/basira248_pe…
Browse files Browse the repository at this point in the history
…rformant_logo

BASIRA #248 - Performant Logo
  • Loading branch information
dleadbetter authored Oct 25, 2023
2 parents 07ed342 + faf35ed commit fe8814c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions client/src/components/PageFooter.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
.page-footer > .menu {
justify-content: center;
}

.page-footer .performant-menu.ui.text.menu {
margin-top: -0.5em;
}
19 changes: 18 additions & 1 deletion client/src/components/PageFooter.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// @flow

import React from 'react';
import { Container, Menu } from 'semantic-ui-react';
import { Container, Image, Menu } from 'semantic-ui-react';
import LinksMenu from './LinksMenu';
import FooterLinks from './FooterLinks';
import PerformantLogo from '../images/performant-logo.png';
import './PageFooter.css';

const PageFooter = () => (
Expand All @@ -17,6 +18,22 @@ const PageFooter = () => (
>
<LinksMenu />
</Menu>
<Menu
borderless
className='performant-menu'
text
>
<Menu.Item
as='a'
href='https://www.performantsoftware.com/'
target='_blank'
>
<Image
src={PerformantLogo}
size='small'
/>
</Menu.Item>
</Menu>
<FooterLinks />
</Container>
);
Expand Down
Binary file added client/src/images/performant-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fe8814c

Please sign in to comment.