From 088df9c4ee3ebc425878ebad48e5de4cd4ea871c Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 22 Oct 2024 07:40:36 -0400 Subject: [PATCH] feat: added animations and navbar goodies --- src/App.jsx | 40 ++++++------ src/components/Header.css | 26 ++++++++ src/components/Header.jsx | 48 +++++++++++---- src/components/Home.css | 23 +++++++ src/components/Home.jsx | 125 ++++++++++++++++++++++++++------------ 5 files changed, 195 insertions(+), 67 deletions(-) create mode 100644 src/components/Home.css diff --git a/src/App.jsx b/src/App.jsx index a471245..975fa56 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,26 +1,32 @@ // src/App.jsx -import React from 'react'; - +import React, { useState } from 'react'; import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; - import Header from './components/Header'; import Footer from './components/Footer'; import Home from './components/Home'; import About from './components/About'; import Roadmap from './components/Roadmap'; -const App = () => ( - -
-
- - } /> - } /> - } /> - -
-