jonbio/data/projectsData.ts
Jonathan Branan f60e71116b
All checks were successful
Build and Deploy docker container / build (push) Successful in 2m41s
Updated author image
2024-11-03 17:24:40 -06:00

18 lines
346 B
TypeScript

interface Project {
title: string
description: string
href?: string
imgSrc?: string
}
const projectsData: Project[] = [
{
title: 'qbit-maid',
description: `Qbittorrent torrent cleaner built in python.`,
imgSrc: 'https://s3.jonb.io/cdn/projects/qbitmaid.jpg',
href: '/blog/qbitmaid',
},
]
export default projectsData