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.`,
|
|
|
|
imgSrc: '/static/images/qbitmaid.jpg',
|
|
|
|
href: 'https://git.jonb.io/jblu/qbit-maid',
|
2024-10-14 00:18:50 -05:00
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
export default projectsData
|