Skip to content

Commit

Permalink
feat: add new develop icon
Browse files Browse the repository at this point in the history
  • Loading branch information
PaloMiku committed Nov 4, 2024
1 parent 455ee23 commit 74c1f97
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ import {
SiRedis,
SiNestjs,
SiAlgolia,
SiSwift
SiSwift,
SiPython,
SiRust
} from 'react-icons/si' // si 代表 Simple Icons

// 添加特性数据数组
Expand Down Expand Up @@ -127,6 +129,20 @@ function Powered(): React.ReactElement {
href: 'https://swift.org',
description: 'Apple 生态系统的现代编程语言',
color: '#F05138'
},
{
name: 'Python',
icon: SiPython,
href: 'https://www.python.org',
description: '简单易用的高级编程语言',
color: '#3776AB'
},
{
name: 'Rust',
icon: SiRust,
href: 'https://www.rust-lang.org',
description: '高性能、可靠的系统编程语言',
color: 'var(--foreground)'
}
];

Expand Down

0 comments on commit 74c1f97

Please sign in to comment.