Compare commits
2 Commits
874da6bf16
...
84e6aa0fb8
Author | SHA1 | Date | |
---|---|---|---|
84e6aa0fb8 | |||
8bdad3cb44 |
@ -106,8 +106,8 @@ const config = {
|
||||
title: 'Community',
|
||||
items: [
|
||||
{
|
||||
label: 'Twitter',
|
||||
href: 'https://twitter.com/jeddunk',
|
||||
label: 'Bluesky',
|
||||
href: 'https://bsky.app/profile/jeddunk.xyz',
|
||||
},
|
||||
{
|
||||
label: 'YouTube',
|
||||
@ -117,6 +117,10 @@ const config = {
|
||||
label: 'Twitch',
|
||||
href: 'https://twitch.tv/jeddunk',
|
||||
},
|
||||
{
|
||||
label: 'Twitter',
|
||||
href: 'https://twitter.com/jeddunk',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -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 =>
|
||||
<li key={elem.id}>
|
||||
<p>
|
||||
<b>{elem.title}</b>
|
||||
<br/>
|
||||
{elem.description}
|
||||
</p>
|
||||
</li>
|
||||
)
|
||||
return (
|
||||
<div>WORK IN PROGRESS</div>
|
||||
<div>
|
||||
<div>WORK IN PROGRESS</div>
|
||||
<ul>
|
||||
{elementList}
|
||||
</ul>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user