admin panel progress

This commit is contained in:
2024-06-08 00:21:53 +02:00
parent a0a938021d
commit 99c3267c04
24 changed files with 305 additions and 103 deletions
@@ -0,0 +1,11 @@
import styles from "./navbar.module.css"
const navItems = ["News", "Projects", "About Me"];
const navList = navItems.map(value => <a key={value} className={styles.navItem}>{value}</a>);
export default function Navbar() {
return <nav className={`${styles.navbar}`}>
<ul>{navList}</ul>
</nav>
}