diff --git a/src/App.tsx b/src/App.tsx
index 0fedd94..d0f6eb3 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,10 +1,8 @@
import React from "react";
-
import { About, Footer, Header, Skills, Testimonial, Work } from "./container";
import { Navbar } from "./components";
import "./App.scss";
-// App
const App: React.FC = () => {
return (
diff --git a/src/components/Navbar/Navbar.scss b/src/components/Navbar/Navbar.scss
index 52ce967..46a7491 100644
--- a/src/components/Navbar/Navbar.scss
+++ b/src/components/Navbar/Navbar.scss
@@ -19,14 +19,13 @@
justify-content: flex-start;
align-items: center;
- img {
- width: 90px;
- height: 20px;
-
- @media screen and (min-width: 2000px) {
- width: 180px;
- height: 40px;
- }
+ a {
+ color: var(--secondary-color);
+ text-decoration: none;
+ font-size: 1.5rem;
+ font-weight: 800;
+ text-transform: uppercase;
+ font-family: var(--font-base);
}
}
diff --git a/src/components/Navbar/Navbar.tsx b/src/components/Navbar/Navbar.tsx
index a155445..c542d0c 100644
--- a/src/components/Navbar/Navbar.tsx
+++ b/src/components/Navbar/Navbar.tsx
@@ -27,7 +27,7 @@ const Navbar = () => {