From 5c8809588903d93a2002a7e91f8d789b490c0458 Mon Sep 17 00:00:00 2001 From: polsevev Date: Fri, 1 Sep 2023 15:30:14 +0200 Subject: [PATCH] Fixed github logo --- .../assets => public}/github-mark-white.png | Bin polsevev.dev.frontend/public/vite.svg | 1 - .../src/components/TopBar.tsx | 32 +++++++----------- 3 files changed, 13 insertions(+), 20 deletions(-) rename polsevev.dev.frontend/{src/assets => public}/github-mark-white.png (100%) delete mode 100644 polsevev.dev.frontend/public/vite.svg diff --git a/polsevev.dev.frontend/src/assets/github-mark-white.png b/polsevev.dev.frontend/public/github-mark-white.png similarity index 100% rename from polsevev.dev.frontend/src/assets/github-mark-white.png rename to polsevev.dev.frontend/public/github-mark-white.png diff --git a/polsevev.dev.frontend/public/vite.svg b/polsevev.dev.frontend/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/polsevev.dev.frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/polsevev.dev.frontend/src/components/TopBar.tsx b/polsevev.dev.frontend/src/components/TopBar.tsx index 688fd2d..0a0a2c2 100644 --- a/polsevev.dev.frontend/src/components/TopBar.tsx +++ b/polsevev.dev.frontend/src/components/TopBar.tsx @@ -4,25 +4,19 @@ import { GithubLogo, TopBarBox, Wrapper } from "../styles/TopBarStyle"; import { BigText } from "../styles/TextStyles"; import NavigationMenu from "./NavigationMenu"; - - - const TopBar: React.FC = () => { -return ( - <> - - - - Polsevev - - - - - - - - - ); + return ( + <> + + + + Polsevev + + + + + + + ); }; export default TopBar;