diff options
| author | Fuwn <[email protected]> | 2020-11-10 11:50:24 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-11-10 11:50:24 -0800 |
| commit | 2a16314865ebd408fee4edfbc89eb632c887b795 (patch) | |
| tree | 89db566af5c4c13cec8f35f3ecf1be0a426c27f3 /src/components | |
| download | me-rewrite-typescript.tar.xz me-rewrite-typescript.zip | |
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Navigation/NavigationBar.tsx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/components/Navigation/NavigationBar.tsx b/src/components/Navigation/NavigationBar.tsx new file mode 100644 index 0000000..0b53061 --- /dev/null +++ b/src/components/Navigation/NavigationBar.tsx @@ -0,0 +1,35 @@ +import React from 'react'; + +function NavigationBar() { + return ( + <nav className="navbar is-transparent"> + <div className="navbar-brand"> + <p className="navbar-item"> + :: + </p> + </div> + + <div className="navbar-menu"> + <div className="navbar-end"> + <a className="navbar-item" href="/"> + Home + </a> + <a className="navbar-item" href="/"> + Skills + </a> + <a className="navbar-item" href="/"> + Projects + </a> + <a className="navbar-item" href="/"> + About Me + </a> + <a className="navbar-item" href="/"> + Blog + </a> + </div> + </div> + </nav> + ); +} + +export default NavigationBar; |