Update homepage

This commit is contained in:
Jeddunk 2024-10-19 11:02:48 +02:00
parent 8bdad3cb44
commit 84e6aa0fb8

View File

@ -1,8 +1,41 @@
import clsx from 'clsx'; //Uncomment the following when needed
import styles from './styles.module.scss'; //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() { export default function HomepageContent() {
const elementList = elements.map(elem =>
<li key={elem.id}>
<p>
<b>{elem.title}</b>
<br/>
{elem.description}
</p>
</li>
)
return ( return (
<div>WORK IN PROGRESS</div> <div>
<div>WORK IN PROGRESS</div>
<ul>
{elementList}
</ul>
</div>
) )
} }