Compare commits
2 Commits
874da6bf16
...
84e6aa0fb8
Author | SHA1 | Date | |
---|---|---|---|
84e6aa0fb8 | |||
8bdad3cb44 |
@ -106,8 +106,8 @@ const config = {
|
|||||||
title: 'Community',
|
title: 'Community',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: 'Twitter',
|
label: 'Bluesky',
|
||||||
href: 'https://twitter.com/jeddunk',
|
href: 'https://bsky.app/profile/jeddunk.xyz',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'YouTube',
|
label: 'YouTube',
|
||||||
@ -117,6 +117,10 @@ const config = {
|
|||||||
label: 'Twitch',
|
label: 'Twitch',
|
||||||
href: 'https://twitch.tv/jeddunk',
|
href: 'https://twitch.tv/jeddunk',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Twitter',
|
||||||
|
href: 'https://twitter.com/jeddunk',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -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