diff --git a/src/components/HomepageContent/index.js b/src/components/HomepageContent/index.js index df03f9e..ba07ae4 100644 --- a/src/components/HomepageContent/index.js +++ b/src/components/HomepageContent/index.js @@ -1,8 +1,41 @@ -import clsx from 'clsx'; -import styles from './styles.module.scss'; +//Uncomment the following when needed +//import clsx from 'clsx'; +//import styles from './styles.module.scss'; + +export const elements = [ + { + id: 'dev', + title: 'Dev Stuff', + description: 'Development stuff', + }, + { + id: 'gam', + title: 'Gaming Stuff', + description: 'Gaming content stuff', + }, + { + id: 'mus', + title: 'Music Stuff', + description: 'Music production stuff', + }, +]; export default function HomepageContent() { + const elementList = elements.map(elem => +
  • +

    + {elem.title} +
    + {elem.description} +

    +
  • + ) return ( -
    WORK IN PROGRESS
    +
    +
    WORK IN PROGRESS
    + +
    ) }