Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update portfolio by adding and removing project #195

Merged
merged 3 commits into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 21 additions & 24 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,22 @@
<div class="portfolio__cards">
<div class="portfolio__cards__scroll">
<div id="card1" class="card">
<h2>Alarm Clock</h2>
<p>
A React-Native application that allows users to configure various
punishments for not waking up and ways of detecting if a user is awake.
Languages: JavaScript. Framework/tools: React-Native, Expo.
</p>
<button onclick="location.href = 'https://github.com/ufosc/Alarm-Clock';">ABOUT</button>
</div>
<div id="card2" class="card">
<h2>OSC-Distro</h2>
<p>
An OSC themed Linux Distribution based on Debian using Linux From Scratch.
</p>
<button onclick="location.href = 'https://github.com/ufosc/OSC-Distro';">ABOUT</button>
</div>
<div id="card3" class="card">
<h2>OpenWebServices</h2>
<p>
Club-related MicroServices, including an in-house implementation
Expand All @@ -77,7 +93,7 @@
</p>
<button onclick="location.href = 'https://github.com/ufosc/OpenWebServices';">ABOUT</button>
</div>
<div id="card2" class="card">
<div id="card4" class="card">
<h2>Bytes of Love</h2>
<p>
A visual novel dating simulator where you can play as a
Expand All @@ -87,7 +103,7 @@
</p>
<button onclick="location.href = 'https://github.com/ufosc/VisualNovel';">ABOUT</button>
</div>
<div id="card3" class="card">
<div id="card5" class="card">
<h2>JukeBox</h2>
<p>
A web application that allows group members to queue up songs
Expand All @@ -97,7 +113,7 @@
</p>
<button onclick="location.href = 'https://github.com/ufosc/Jukebox-Frontend';">ABOUT</button>
</div>
<div id="card4" class="card">
<div id="card6" class="card">
<h2>Proximity Chat</h2>
<p>
An application that allow users to chat with people that they are
Expand All @@ -107,17 +123,7 @@
</p>
<button onclick="location.href = 'https://github.com/ufosc/OSC-Proximity-Chat-App';">ABOUT</button>
</div>
<div id="card5" class="card">
<h2>OSC Website</h2>
<p>
A website to serve as a landing page for new members as a hub
of information about the club, with a dynamic blog and content
management system. Built in Javascript, HTML, CSS, with the
frameworks/tools: Node.js, Express.js, EJS.
</p>
<button onclick="location.href = 'https://github.com/ufosc/Club_Website_2';">ABOUT</button>
</div>
<div id="card6" class="card">
<div id="card7" class="card">
<h2>SwampScheduler</h2>
<p>
A website to assist students in creating schedules that work
Expand All @@ -127,7 +133,7 @@
</p>
<button onclick="location.href = 'https://github.com/ufosc/Schedule_Helper';">ABOUT</button>
</div>
<div id="card7" class="card">
<div id="card8" class="card">
<h2>Manim</h2>
<p>
Inspired by 3Blue1Brown, creating a plug-in that adds to the
Expand All @@ -137,15 +143,6 @@
</p>
<button onclick="location.href = 'https://github.com/ufosc/manim-data-structures';">ABOUT</button>
</div>
<div id="card8" class="card">
<h2>API Group</h2>
<p>
Working on several small projects that involve APIs to gain
knowledge about building and using them. Built in Python,
with FastAPI.
</p>
<button onclick="location.href = 'https://github.com/ufosc/UF-API-GROUP';">ABOUT</button>
</div>
<button class="portfolio__cards__scroll__btn-left">
<img src="./assets/left-swipe-arrow.png" alt="left arrow" width="45" height="45">
</button>
Expand Down
Loading