18 lines
486 B
TypeScript
18 lines
486 B
TypeScript
interface ProjectData {
|
||
title?: string
|
||
description?: string
|
||
imgSrc?: string
|
||
href?: string
|
||
}
|
||
|
||
const projectsData: ProjectData[] = [
|
||
{
|
||
title: 'UPS',
|
||
description: `一个不间断电源(UPS)的全栈项目。核心硬件使用乐鑫×安信可的 ESP32-C3-32S 模块作为主控,软件部分使用了 Rust + ESP-IDF 开发。`,
|
||
// imgSrc: '/static/images/google.png',
|
||
href: 'https://git.ivanli.cc/Ivan/ups-esp32c3-rust',
|
||
},
|
||
]
|
||
|
||
export default projectsData
|