-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript.js
More file actions
53 lines (52 loc) · 867 Bytes
/
script.js
File metadata and controls
53 lines (52 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const officers = [
{
name: "Anna Hsu",
role: "Co-President",
image: "anna.jpg",
year: 2022,
},
{
name: "Bryant Park",
role: "Co-President",
image: "bryant.png",
year: 2022,
},
{
name: "Zakariyya Scavotto",
role: "Lecturer",
image: "zakariyya.png",
year: 2022,
},
{
name: "Daniel Chua",
role: "Lecturer",
image: "daniel.jpg",
year: 2024,
},
{
name: "Allen Huo",
role: "Lecturer",
image: "allen.png",
year: 2023,
},
{
name: "Ashley Chen",
role: "Publicist",
image: "ashley.png",
year: 2022,
},
];
const resources = [
{
name: "W3Schools",
link: "https://www.w3schools.com",
},
{
name: "MDN Web Docs",
link: "https://developer.mozilla.org",
},
{
name: "HTML Reference",
link: "https://www.htmlreference.io",
},
];