Jonathan Branan
f60e71116b
All checks were successful
Build and Deploy docker container / build (push) Successful in 2m41s
18 lines
346 B
TypeScript
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
|