modified likes page
Some checks failed
Build and Deploy docker container / build (push) Failing after 1m15s
Some checks failed
Build and Deploy docker container / build (push) Failing after 1m15s
This commit is contained in:
@ -49,5 +49,5 @@ To be continued....
|
||||
### Troubleshooting insanity
|
||||
### The Need to Concede
|
||||
### Light at the end of the tunnel
|
||||
*/}
|
||||
*/}
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
const headerNavLinks = [
|
||||
{ href: '/', title: 'Home' },
|
||||
{ href: '/blog', title: 'Blog' },
|
||||
{ href: 'https://git.jonb.io/', title: 'Code' },
|
||||
{ href: 'https://up.jonb.io/status/default', title: 'Status' },
|
||||
{ href: 'https://castlemine-map.jonb.io/', title: 'Castlemine Map' },
|
||||
// { href: 'https://git.jonb.io/', title: 'Code' },
|
||||
{ href: '/likes', title: 'Likes' },
|
||||
{ href: '/tags', title: 'Tags' },
|
||||
{ href: '/projects', title: 'Projects' },
|
||||
|
29
data/likesData.ts
Normal file
29
data/likesData.ts
Normal file
@ -0,0 +1,29 @@
|
||||
interface Likes {
|
||||
title: string
|
||||
description: string
|
||||
href?: string
|
||||
imgSrc?: string
|
||||
}
|
||||
|
||||
const likesData: Likes[] = [
|
||||
{
|
||||
title: 'Gitea',
|
||||
description: `My git server. Where all of the development happens.`,
|
||||
href: 'https://git.jonb.io/',
|
||||
imgSrc: 'https://s3.jonb.io/cdn/likes/gitea.jpeg',
|
||||
},
|
||||
{
|
||||
title: 'Castlemine Map',
|
||||
description: `Minecraft map for the castlemine.jonb.io server.`,
|
||||
href: 'https://castlemine-map.jonb.io/',
|
||||
imgSrc: 'https://s3.jonb.io/cdn/likes/minecraft.jpeg',
|
||||
},
|
||||
{
|
||||
title: 'Uptime Kuma',
|
||||
description: `App that monitors the kingdom.`,
|
||||
href: 'https://up.jonb.io/status/default',
|
||||
imgSrc: 'https://s3.jonb.io/cdn/likes/uptime-kuma.jpeg',
|
||||
},
|
||||
]
|
||||
|
||||
export default likesData
|
Reference in New Issue
Block a user