diff --git a/src/components/Navigation/Navigation.jsx b/src/components/Navigation/Navigation.jsx new file mode 100644 index 0000000..94f5533 --- /dev/null +++ b/src/components/Navigation/Navigation.jsx @@ -0,0 +1,31 @@ +import "./styles.sass" +import {GamepadOutlined, HistoryEduOutlined, TrendingUpOutlined} from "@mui/icons-material"; + +export const Navigation = () => { + return ( + + ) +} \ No newline at end of file diff --git a/src/components/Navigation/styles.sass b/src/components/Navigation/styles.sass new file mode 100644 index 0000000..288033e --- /dev/null +++ b/src/components/Navigation/styles.sass @@ -0,0 +1,49 @@ +@use "@/styles/colors" as * + +nav + margin: 1rem 2rem + display: flex + align-items: center + justify-content: space-between + + h2, h3 + margin: 0 + +.navigation + display: flex + align-items: center + gap: 2rem + +.nav-items + display: flex + align-items: center + gap: 1rem + +.nav-item + display: flex + align-items: center + gap: 0.5rem + + h3 + font-weight: 500 + + &:hover + cursor: pointer + + h3, svg + color: rgba($primary, 0.8) + +.nav-item-active + h3, svg + color: $primary + +.action-buttons + display: flex + align-items: center + gap: 1rem + + a + color: $text-light + font-size: 14pt + font-weight: 500 + text-decoration: none \ No newline at end of file