Skip to content

Commit

Permalink
Added status
Browse files Browse the repository at this point in the history
  • Loading branch information
likeich committed Sep 18, 2024
1 parent 37bc69a commit 15e3543
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
3 changes: 3 additions & 0 deletions _data/projects.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
- title: A2 Languages
icon: images/projects/a2-icon.png
description: "A language learning app that uses spaced repetition, AI, and Bible readings to help you learn a new language."
status: "In development"

- title: Console Launcher
icon: images/projects/cl-icon.png
description: "A home screen for Android phones which turns your phone into a game console."
url: "https://consolelauncher.app"
status: "5+ million installs on Google Play"

- title: Reggie
icon: images/projects/reggie-icon.png
description: "An Army Regulation AI search engine that can find answers to complex questions in seconds."
url: "https://reggie.bot"
status: "Releasing in September 2024"
4 changes: 4 additions & 0 deletions _includes/project-previews.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<div class="title-description">
<h2><a href="{{ project.url }}">{{ project.title }}</a></h2>
<p class="project-description">{{ project.description }}</p>
{% if project.status %}
<small>{{ project.status }}</small>
<!-- Status text -->
{% endif %}
</div>
</div>
{% if project.url %}
Expand Down
18 changes: 6 additions & 12 deletions _sass/_project-preview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,6 @@
margin: 0;
}

.content-preview {
padding: 20px;
border-radius: 10px;
background-color: $lightBackground;
box-shadow: 0 4px 6px $shadowColor;
transition: box-shadow 0.3s ease-in-out;
}

.content-preview:hover {
box-shadow: 0 6px 12px $strongShadowColor;
}

.link-icon {
position: absolute;
bottom: 5px;
Expand All @@ -49,3 +37,9 @@
.link-icon:hover {
color: #007bff; /* Change color on hover (optional) */
}

.title-description small {
font-size: 0.85em;
color: #888; /* Light gray color */
margin-top: 10px;
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: default
---

<h2>Projects</h2>
{% include project-previews.html %}

<hr />
Expand Down

0 comments on commit 15e3543

Please sign in to comment.