Skip to content

Commit 7434bf9

Browse files
author
CodeWithBry
committed
Updates
0 parents  commit 7434bf9

File tree

16 files changed

+3417
-0
lines changed

16 files changed

+3417
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.env
2+
3+
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*
10+
pnpm-debug.log*
11+
lerna-debug.log*
12+
13+
node_modules
14+
dist
15+
dist-ssr
16+
*.local
17+
18+
# Editor directories and files
19+
.vscode/*
20+
!.vscode/extensions.json
21+
.idea
22+
.DS_Store
23+
*.suo
24+
*.ntvs*
25+
*.njsproj
26+
*.sln
27+
*.sw?

Subjects/21st.jpg

63 KB
Loading

Subjects/CPAR.webp

5.26 KB
Loading

Subjects/CSS.webp

12.2 KB
Loading

Subjects/Entrepreneurship.jpg

78.6 KB
Loading

Subjects/PR2.jpg

47.9 KB
Loading

Subjects/Philosophy.jpg

55.8 KB
Loading

Subjects/Robotics.webp

6.96 KB
Loading

Subjects/UCSP.jpg

11.9 KB
Loading

Subjects/subjects.json

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
[
2+
{
3+
"subjectName": "Computer System Servicing",
4+
"subjectNameAbbreviation": "CSS",
5+
"subjectTeacher": "Sir. Enrico Dela Cruz",
6+
"subjectSemester": "First",
7+
"quarter": 1,
8+
"imgPath": "./Subjects/CSS.webp",
9+
"color": "#3867F6",
10+
"activities": [
11+
{
12+
"id": "",
13+
"quarter": "",
14+
"semester": "",
15+
"title": "",
16+
"description": "",
17+
"dueDate": "",
18+
"state": "pending"
19+
}
20+
]
21+
},
22+
{
23+
"subjectName": "Robotics",
24+
"subjectNameAbbreviation": "Robotics",
25+
"subjectTeacher": "Ma'am Sophia Magdangal",
26+
"subjectSemester": "First",
27+
"quarter": 1,
28+
"imgPath": "./Subjects/Robotics.webp",
29+
"color": "#05A2FD"
30+
},
31+
{
32+
"subjectName": "Practical Research 2",
33+
"subjectNameAbbreviation": "PR2",
34+
"subjectTeacher": "Sir. Renedict De Leon",
35+
"subjectSemester": "First",
36+
"quarter": 1,
37+
"imgPath": "./Subjects/PR2.jpg",
38+
"color": "#B68209"
39+
},
40+
{
41+
"subjectName": "Understanding Culuture, Society and Politics",
42+
"subjectNameAbbreviation": "UCSP",
43+
"subjectTeacher": "Sir. Justin Sebastian",
44+
"subjectSemester": "First",
45+
"quarter": 1,
46+
"imgPath": "./Subjects/UCSP.jpg",
47+
"color": "#FD6405"
48+
},
49+
{
50+
"subjectName": "Contemporary Philippines Art from the Region",
51+
"subjectNameAbbreviation": "CPAR",
52+
"subjectTeacher": "F. Galang",
53+
"subjectSemester": "First",
54+
"quarter": 1,
55+
"imgPath": "./Subjects/CPAR.webp",
56+
"color": "#D5BA1F"
57+
},
58+
{
59+
"subjectName": "Philosophy",
60+
"subjectNameAbbreviation": "Philosophy",
61+
"subjectTeacher": "Sir. Joshua Ramos",
62+
"subjectSemester": "First",
63+
"quarter": 1,
64+
"imgPath": "./Subjects/Philosophy.jpg",
65+
"color": "#229961"
66+
},
67+
{
68+
"subjectName": "Entrepreneurship",
69+
"subjectNameAbbreviation": "Entrepreneurship",
70+
"subjectTeacher": "Sir. Kennet Miranda",
71+
"subjectSemester": "First",
72+
"quarter": 1,
73+
"imgPath": "./Subjects/Entrepreneurship.jpg",
74+
"color": "#0ED64D"
75+
},
76+
{
77+
"subjectName": "21st Century Literature",
78+
"subjectNameAbbreviation": "21stCL",
79+
"subjectTeacher": "L. Leonolo",
80+
"subjectSemester": "First",
81+
"quarter": 1,
82+
"imgPath": "./Subjects/21st.jpg",
83+
"color": "#AC0BD4"
84+
}
85+
]

0 commit comments

Comments
 (0)