import Link from 'next/link'; import Image from 'next/image'; import { useState } from 'react'; import { VscChevronRight } from 'react-icons/vsc'; import styles from '@/styles/Explorer.module.css'; const explorerItems = [ { name: 'home.tsx', path: '/', icon: '/logos/react_icon.svg', }, { name: 'about.html', path: '/about', icon: '/logos/html_icon.svg', }, { name: 'contact.css', path: '/contact', icon: '/logos/css_icon.svg', }, { name: 'projects.js', path: '/projects', icon: '/logos/js_icon.svg', }, /* { name: 'articles.json', path: '/articles', icon: '/logos/json_icon.svg', }, */ { name: 'github.md', path: '/github', icon: '/logos/markdown_icon.svg', }, ]; const Explorer = () => { const [portfolioOpen, setPortfolioOpen] = useState(true); return (
Explorer
{item.name}