import { motion } from "framer-motion"; import Link from "next/link"; export default function Sidemenu() { return ( {[ { name: leafSVG, path: "/" }, { name: "What's a Digital Garden?", path: "/what", style: "font-bold", }, { name: "Directory", path: "/directory" }, { name: "Tools", path: "/tools" }, { name: "Tutorials and Guides", path: "/tutorials" }, { name: "Theory, Philosophy, & Navel-Gazing", path: "/theory" }, ].map((item, index) => ( {item.name} ))} ); } const leafSVG = ( );