diff --git a/src/App.css b/src/App.css index b9d355d..fc28a0c 100644 --- a/src/App.css +++ b/src/App.css @@ -1,42 +1,19 @@ -#root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; -} - -.logo { - height: 6em; - padding: 1.5em; - will-change: filter; - transition: filter 300ms; -} -.logo:hover { - filter: drop-shadow(0 0 2em #646cffaa); -} -.logo.react:hover { - filter: drop-shadow(0 0 2em #61dafbaa); -} - -@keyframes logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } +* { + padding: 0; + margin: 0; + box-sizing: border-box; } @media (prefers-reduced-motion: no-preference) { - a:nth-of-type(2) .logo { - animation: logo-spin infinite 20s linear; - } + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } } .card { - padding: 2em; + padding: 2em; } .read-the-docs { - color: #888; + color: #888; } diff --git a/src/App.jsx b/src/App.jsx index 115ad74..fb3d944 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2,35 +2,16 @@ import { useState } from "react" import reactLogo from "./assets/react.svg" import viteLogo from "/vite.svg" import "./App.css" +import Header from "./components/Header/Header" function App() { const [count, setCount] = useState(0) return ( <> -
- - Vite logo - - - React logo - -
-

Vite + React

-
- -

- Edit src/App.jsx and save to test HMR -

-
-

- Click on the Vite and React logos to learn more -

- +
) } -export default App \ No newline at end of file +export default App diff --git a/src/assets/Stake_logo.png b/src/assets/Stake_logo.png new file mode 100644 index 0000000..e8743ea Binary files /dev/null and b/src/assets/Stake_logo.png differ diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx new file mode 100644 index 0000000..333fb8f --- /dev/null +++ b/src/components/Header/Header.jsx @@ -0,0 +1,19 @@ +import logo from "../../assets/Stake_logo.png" + +const Header = () => { + return ( +
+
+ +
+
+ + +
+
+ ) +} + +export default Header