Run prettier

This commit is contained in:
Kevin Kandlbinder 2021-09-24 12:08:46 +00:00
parent c621e347fd
commit c053e901c0
14 changed files with 199 additions and 98 deletions

View file

@ -49,7 +49,8 @@ const Navigation = ({ isHome }) => {
styles.topBar +
(isHome ? " " + styles.homeBar : "") +
(atTop ? " " + styles.homeBarTransparent : "")
}>
}
>
<nav className={styles.topBarInner}>
<StaticQuery
query={graphql`
@ -71,13 +72,15 @@ const Navigation = ({ isHome }) => {
<Link
id="navBtnProjects"
to="/projects"
activeClassName={styles.active}>
activeClassName={styles.active}
>
<Trans>projects</Trans>
</Link>
<Link
id="navBtnSocial"
to="/social"
activeClassName={styles.active}>
activeClassName={styles.active}
>
<Trans>social</Trans>
</Link>
</nav>