diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Navbar.astro | 9 | ||||
| -rw-r--r-- | src/components/Navbar.css | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro new file mode 100644 index 0000000..6cf958a --- /dev/null +++ b/src/components/Navbar.astro @@ -0,0 +1,9 @@ +--- +import "./Navbar.css" +--- +<nav> + <ul> + <li>Home</li> + <li>Projects</li> + </ul> +</nav> diff --git a/src/components/Navbar.css b/src/components/Navbar.css new file mode 100644 index 0000000..d92fbbc --- /dev/null +++ b/src/components/Navbar.css @@ -0,0 +1,3 @@ +nav { + text-align: center; +} |
