mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-09-18 16:05:33 -04:00
stop being lazy with css selectors
This commit is contained in:
@@ -13,22 +13,22 @@ type Props = {
|
||||
|
||||
const links = [
|
||||
{
|
||||
icon: <HomeIcon className={styles.icon} aria-hidden={true} />,
|
||||
icon: <HomeIcon className={styles.icon} />,
|
||||
text: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
icon: <NotesIcon className={styles.icon} aria-hidden={true} />,
|
||||
icon: <NotesIcon className={styles.icon} />,
|
||||
text: "Notes",
|
||||
href: "/notes",
|
||||
},
|
||||
{
|
||||
icon: <ProjectsIcon className={styles.icon} aria-hidden={true} />,
|
||||
icon: <ProjectsIcon className={styles.icon} />,
|
||||
text: "Projects",
|
||||
href: "/projects",
|
||||
},
|
||||
{
|
||||
icon: <ContactIcon className={styles.icon} aria-hidden={true} />,
|
||||
icon: <ContactIcon className={styles.icon} />,
|
||||
text: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
|
Reference in New Issue
Block a user