polsevev.dev/polsevev.dev.frontend/src/components/TopBar.tsx

29 lines
591 B
TypeScript
Raw Normal View History

2023-08-24 14:31:35 +00:00
import React from "react";
2023-08-23 13:19:58 +00:00
2023-08-30 13:48:44 +00:00
import { GithubLogo, TopBarBox, Wrapper } from "../styles/TopBarStyle";
import { BigText } from "../styles/TextStyles";
import NavigationMenu from "./NavigationMenu";
2023-08-23 13:19:58 +00:00
2023-08-30 13:48:44 +00:00
const TopBar: React.FC = () => {
return (
2023-08-24 14:31:35 +00:00
<>
<Wrapper>
2023-08-30 13:48:44 +00:00
<TopBarBox href={"https://github.com/polsevev/"
}>
<GithubLogo src={"/src/assets/github-mark-white.png"}/>
<BigText>Polsevev</BigText>
</TopBarBox>
<TopBarBox>
<NavigationMenu/>
</TopBarBox>
2023-08-24 14:31:35 +00:00
</Wrapper>
</>);
};
export default TopBar;