Compare commits

...

2 Commits

Author SHA1 Message Date
84e6aa0fb8 Update homepage 2024-10-19 11:03:40 +02:00
8bdad3cb44 Add Bluesky link 2024-10-19 11:00:23 +02:00
2 changed files with 42 additions and 5 deletions

View File

@ -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',
},
], ],
}, },
{ {

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>
<div>WORK IN PROGRESS</div> <div>WORK IN PROGRESS</div>
<ul>
{elementList}
</ul>
</div>
) )
} }