@@ -3,11 +3,47 @@ import Section from '../Section.astro';
3
3
import Project from ' ./Project.astro' ;
4
4
import type { ProjectType } from ' ../../types' ;
5
5
6
- const projects: ProjectType [] = [];
6
+ const projects: ProjectType [] = [
7
+ {
8
+ name: ' DSA' ,
9
+ description:
10
+ ' Implementations of common data structures and algorithms in C++.' ,
11
+ github: ' https://github.com/achen318/dsa'
12
+ },
13
+ {
14
+ name: ' MEAT' ,
15
+ description: ' Multimodal Emotion Analysis Technology' ,
16
+ github: ' https://github.com/achen318/meat-web'
17
+ },
18
+ {
19
+ name: ' Character Recognition' ,
20
+ description:
21
+ ' A website demonstration of how linear algebra techniques (e.g. singular value decomposition) can be used to classify handwritten characters.' ,
22
+ github: ' https://github.com/achen318/character-recognition'
23
+ },
24
+ {
25
+ name: ' Anson Fun Time' ,
26
+ description:
27
+ " A physics demonstration using the Law of Biot-Savart / Coulomb's Law." ,
28
+ github:
29
+ ' https://www.glowscript.org/#/user/anson/folder/MyPrograms/program/ProjectFinalFinal'
30
+ },
31
+ {
32
+ name: ' Solar System' ,
33
+ description:
34
+ ' A physics demonstration of the solar system using the Law of Universal Gravitation.' ,
35
+ github:
36
+ ' https://glowscript.org/#/user/achen45/folder/MyPrograms/program/OrbitsLabAnthonyChenPart3'
37
+ },
38
+ {
39
+ name: ' SongGuessr' ,
40
+ description:
41
+ ' A live multiplayer music guessing game, where players gain points every round by correctly guessing the playing song before time is up.' ,
42
+ github: ' https://github.com/Stuycs-K/project03-final-10-chena-sens-shena'
43
+ }
44
+ ];
7
45
---
8
46
9
47
<Section title =" Projects" >
10
- <p class =" text-important" >Check out some of my best works here! (WIP)</p >
11
-
12
48
{ projects .map ((project : ProjectType ) => <Project project = { project } />)}
13
49
</Section >
0 commit comments