|
1 | | -import Background from "./background"; |
2 | 1 | import ProjectCard from "./project-card"; |
3 | 2 |
|
4 | 3 | const Projects: React.FC = () => { |
5 | 4 | return ( |
6 | | - <main className="scroll-m-14"> |
7 | | - <Background> |
8 | | - <p |
9 | | - id="projects" |
10 | | - className="text-5xl items-center text-center text-[#d3c6aa] scroll-m-14 lg:m-10" |
11 | | - > |
12 | | - Projects |
13 | | - </p> |
14 | | - {/* TODO: Add current working project */} |
15 | | - <div className="grid grid-cols-1 xl:grid-cols-2 justify-items-center items-center gap-10"> |
16 | | - <ProjectCard |
17 | | - link="https://github.com/Aeonoi/studyit" |
18 | | - description="A productivity tool to make focusing enjoyable and competitive. |
19 | | - A all in one solution to study while enjoying a built in youtube player and a balanced rank system. |
20 | | - In case of work load, there is a built in calendar for events and todos to help manage your schedule." |
21 | | - title="StudyIt" |
22 | | - image="/studyit.png" |
23 | | - stack={["React.js", "Next.js", "MongoDB", "TailwindCSS"]} |
24 | | - /> |
25 | | - <ProjectCard |
26 | | - link="https://github.com/Aeonoi/notts" |
27 | | - description="A minimalistic note taking app that utilizes markdown. |
28 | | - Easily manage your notes by placing them in folders and quickly editing with auto save. Easily manage your notes by placing them in folders and quickly editing with auto save." |
29 | | - title="Notts" |
30 | | - image="/notts.png" |
31 | | - stack={["React.js", "Electron.js", "MongoDB", "TailwindCSS"]} |
32 | | - /> |
33 | | - <ProjectCard |
34 | | - link="https://github.com/wrighs6/leanto" |
35 | | - description="A simple task management application designed to simplify the process of being on multiple teams. |
36 | | - leanto aims to provide an interface to display the tasks from each projects while also providing an interface to interact with additional project specific data and controls." |
37 | | - title="leanto" |
38 | | - image="/leanto.png" |
39 | | - stack={["Preact.js", "Electron.js", "MongoDB"]} |
40 | | - /> |
41 | | - </div> |
42 | | - </Background> |
| 5 | + <main id="projects" className="scroll-m-14"> |
| 6 | + <p className="text-5xl items-center text-center text-[#d3c6aa] scroll-m-14 lg:m-10"> |
| 7 | + Projects |
| 8 | + </p> |
| 9 | + {/* TODO: Add current working project */} |
| 10 | + <div className="grid grid-cols-1 xl:grid-cols-2 justify-items-center items-center gap-10"> |
| 11 | + <ProjectCard |
| 12 | + link="https://github.com/Aeonoi/studyit" |
| 13 | + description="A productivity tool to make focusing enjoyable and competitive. |
| 14 | + A all in one solution to study while enjoying a built in youtube player and a balanced rank system. |
| 15 | + In case of work load, there is a built in calendar for events and todos to help manage your schedule." |
| 16 | + title="StudyIt" |
| 17 | + image="/studyit.png" |
| 18 | + stack={["React.js", "Next.js", "MongoDB", "TailwindCSS"]} |
| 19 | + /> |
| 20 | + <ProjectCard |
| 21 | + link="https://github.com/Aeonoi/notts" |
| 22 | + description="A minimalistic note taking app that utilizes markdown. |
| 23 | + Easily manage your notes by placing them in folders and quickly editing with auto save. Easily manage your notes by placing them in folders and quickly editing with auto save." |
| 24 | + title="Notts" |
| 25 | + image="/notts.png" |
| 26 | + stack={["React.js", "Electron.js", "MongoDB", "TailwindCSS"]} |
| 27 | + /> |
| 28 | + <ProjectCard |
| 29 | + link="https://github.com/wrighs6/leanto" |
| 30 | + description="A simple task management application designed to simplify the process of being on multiple teams. |
| 31 | + leanto aims to provide an interface to display the tasks from each projects while also providing an interface to interact with additional project specific data and controls." |
| 32 | + title="leanto" |
| 33 | + image="/leanto.png" |
| 34 | + stack={["Preact.js", "Electron.js", "MongoDB"]} |
| 35 | + /> |
| 36 | + </div> |
43 | 37 | </main> |
44 | 38 | ); |
45 | 39 | }; |
|
0 commit comments