Skip to content

Commit

Permalink
chore: improve footer layout (#35)
Browse files Browse the repository at this point in the history
* fix ci badge in readme

* fix footer layout

* remove empty line
  • Loading branch information
agus-xyz authored Aug 28, 2022
1 parent ff9c66e commit 24758ff
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<p align="center">
<a aria-label="build status" href="https://github.com/boxfish-studio/fontana/actions/workflows/ci-production.yaml">
<img alt="" src="https://github.com/boxfish-studio/fontana/actions/workflows/deploy_prod.yaml/badge.svg">
<img alt="" src="https://github.com/boxfish-studio/fontana/actions/workflows/ci-production.yaml/badge.svg">
</a>
<a aria-label="contributors graph" href="https://github.com/boxfish-studio/fontana/graphs/contributors">
<img alt="" src="https://img.shields.io/github/contributors/boxfish-studio/fontana.svg">
Expand Down
37 changes: 28 additions & 9 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,38 @@ const Home: NextPage<{ HAS_MONGO_URI: boolean }> = ({ HAS_MONGO_URI }) => {
</div>
<Toast />
<footer>
{version && <p className="color-fg-muted">Fontana {version}</p>}
<p className="color-fg-muted">
With{" "}
<StyledOcticon icon={HeartFillIcon} size={16} color="#666666" />{" "}
from{" "}
<a href="https://boxfish.studio/">
<u>Boxfish Studio</u>
</a>
</p>
<div>
<a href='https://github.com/boxfish-studio/fontana/'>
<a
target='_blank'
rel='noopener noreferrer'
className='color-fg-muted'
style={{ cursor: 'pointer' }}
>
<u>
Fontana {version}
</u>
</a>
</a>
<span className='color-fg-muted'> - by </span>
<a href='https://boxfish.studio/'>
<a
target='_blank'
rel='noopener noreferrer'
className='color-fg-muted'
style={{ cursor: 'pointer' }}
>
<u>
Boxfish Studio
</u>
</a>
</a>
</div>
</footer>
</div>
</>
);
};

export default Home;

0 comments on commit 24758ff

Please sign in to comment.