Update homepage
This commit is contained in:
parent
8bdad3cb44
commit
84e6aa0fb8
@ -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>
|
||||||
<div>WORK IN PROGRESS</div>
|
<div>WORK IN PROGRESS</div>
|
||||||
|
<ul>
|
||||||
|
{elementList}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user