13.04 components + maps

This commit is contained in:
2024-04-13 19:26:25 +03:00
parent f2df14caa3
commit d79676cbb4
15 changed files with 362 additions and 69 deletions
+24
View File
@@ -0,0 +1,24 @@
import React from "react";
import { Link } from "../link";
const navList = [
{ title: "Home", href: "#01" },
{ title: "Персонажи", href: "#02" },
{ title: "Локации", href: "#03" },
{ title: "Эризоды", href: "#04" },
];
export function NavPanel() {
return (
<nav className="nav">
<ul>
{navList.map((element, index) => (
<li key={element.href}>
<Link contrast={Boolean(index)} href={element.href}>{element.title}</Link>
</li>
))}
</ul>
</nav>
);
}