Skip to content

Commit d268ca5

Browse files
committed
/studio
1 parent 13a0a01 commit d268ca5

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

src/pages/studio/index.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@ const DataMinecraftJavaEdition = [
4242
},
4343
];
4444

45+
// 应用
46+
const DataApplications = [
47+
{
48+
img: '/img/Studio/LuckyArtwork.png',
49+
name: 'Lucky Artwork',
50+
description: 'A Flutter framework project that uses an API to randomly generate illustrations.',
51+
link: 'https://github.com/KSSJW/lucky-artwork'
52+
},
53+
]
54+
4555
// 卡片组件
4656
function Card({ img, name, description, link }) {
4757
return (
@@ -66,6 +76,15 @@ export default function CardsPage() {
6676
)
6777
)}
6878
</div>
79+
<br></br>
80+
<h2>Applications</h2>
81+
<div className={styles.cardGrid}>
82+
{DataApplications.map(
83+
(card, index) => (
84+
<Card key={index} {...card} />
85+
)
86+
)}
87+
</div>
6988
</main>
7089
</Layout>
7190
);

static/img/Studio/LuckyArtwork.png

8.59 KB
Loading

0 commit comments

Comments
 (0)