diff --git a/src/components/NavBar/NavBar.css b/src/components/NavBar/NavBar.css deleted file mode 100644 index 1f163a7..0000000 --- a/src/components/NavBar/NavBar.css +++ /dev/null @@ -1,64 +0,0 @@ -nav { - display: flex; - align-items: center; - height: 96px; - width: 83.33%; - margin: auto; -} - -nav > div { - flex: 1; -} - -.title-container { - display: flex; - align-items: center; -} - -.title { - display: flex; - align-items: baseline; -} - -.title h1 { - font-size: 24px; - line-height: 32px; - margin: 0px 16px 0px 8px; -} - -.title small { - margin-top: 4px; - color: #b2b2b2; - font-size: 16px; -} - -.links { - display: flex; - justify-content: flex-end; - padding-right: 32; - text-align: end; -} - -.links a:not(:first-child) { - margin-left: 48px; -} - -a.nav-link { - text-decoration: none; - position: relative; - color: black; -} - -a.nav-link:after { - content: ''; - position: absolute; - bottom: -2px; - left: 0; - width: 0%; - border-bottom: 1px solid black; - transition: 0.2s; -} - -a.nav-link:hover:after { - width: 100%; -} diff --git a/src/components/NavBar/NavBar.tsx b/src/components/NavBar/NavBar.tsx deleted file mode 100644 index 387d3de..0000000 --- a/src/components/NavBar/NavBar.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from "react"; -import "./NavBar.css"; - -type NavBarProps = {}; - -const NavBar: React.FC = () => { - return ( - - ); -}; - -export default NavBar; diff --git a/src/components/index.ts b/src/components/index.ts index 36aab6c..64de9fe 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,6 +1,5 @@ export { default as App } from "./App/App"; export { default as Header } from "./Header/Header"; -export { default as NavBar } from "./NavBar/NavBar"; export { default as Panorama } from "./Panorama/Panorama"; export { default as Info } from "./Info/Info"; export { default as Toolbar } from "./Toolbar/Toolbar";