import { Box, Button, Container, Image } from "@chakra-ui/react"; import React from "react"; import logo from "../assets/logo.png"; import earth from "../assets/earth.png"; import { NavLink } from "react-router-dom"; import { ChevronDownIcon } from "@chakra-ui/icons"; export const nav = [ { title: "Investment", path: "/investment", }, { title: "How it works", path: "/investment", }, { title: "FAQ", path: "/investment", }, { title: "About Us", path: "/investment", }, ]; const Header = () => { return ( {nav.map(({ title, path }, index) => ( {title} ))} En ); }; export default Header;