diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..2e892b6 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,30 @@ +import { useState } from 'react' +import Navbar from './navigator/Navbar' +import About from './screens/About' +import Aside from './navigator/Aside' +import Resume from './screens/Resume' +import { ActiveNav } from './types' +import Contact from './screens/Contact' +import Blog from './screens/Blog' +import Portfolio from './screens/Portfolio' + +function App() { + + const [active, setActive] = useState("About") + + return ( +
+
+ ) +} + +export default App diff --git a/src/index.css b/src/index.css index 1d4e6c8..8a6f425 100644 --- a/src/index.css +++ b/src/index.css @@ -40,7 +40,6 @@ --light-gray: hsl(0, 0%, 84%); --light-gray-70: hsla(0, 0%, 84%, 0.7); --bittersweet-shimmer: hsl(0, 43%, 51%); - /** * typography */ @@ -458,6 +457,10 @@ main { color: var(--light-gray); } +.iconHover{ + color: var(--light-gray); +} + /*-----------------------------------*\ #NAVBAR \*-----------------------------------*/ @@ -1578,7 +1581,10 @@ textarea.form-input::-webkit-resizer { } .testimonials-avatar-box img { + height: 80px; width: 80px; + object-fit: scale-down; + padding: 10px; } .testimonials-item-title { @@ -2113,4 +2119,8 @@ textarea.form-input::-webkit-resizer { max-width: 700px; } +} + +.icon { + color: var(--vegas-gold); } \ No newline at end of file