jonbio/data/projectsData.ts

18 lines
346 B
TypeScript
Raw Normal View History

2024-10-14 00:18:50 -05:00
interface Project {
title: string
description: string
href?: string
imgSrc?: string
}
const projectsData: Project[] = [
{
2024-10-16 12:12:44 -05:00
title: 'qbit-maid',
description: `Qbittorrent torrent cleaner built in python.`,
2024-11-03 17:24:40 -06:00
imgSrc: 'https://s3.jonb.io/cdn/projects/qbitmaid.jpg',
href: '/blog/qbitmaid',
2024-10-14 00:18:50 -05:00
},
]
export default projectsData