diff --git a/_data/projects.yml b/_data/projects.yml index d18d6b9fa5037..7608523a3cfed 100644 --- a/_data/projects.yml +++ b/_data/projects.yml @@ -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" diff --git a/_includes/project-previews.html b/_includes/project-previews.html index 8209f220772bb..650d12c571025 100644 --- a/_includes/project-previews.html +++ b/_includes/project-previews.html @@ -9,6 +9,10 @@

{{ project.title }}

{{ project.description }}

+ {% if project.status %} + {{ project.status }} + + {% endif %}
{% if project.url %} diff --git a/_sass/_project-preview.scss b/_sass/_project-preview.scss index e85fca4b1a154..15c990bb61648 100644 --- a/_sass/_project-preview.scss +++ b/_sass/_project-preview.scss @@ -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; @@ -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; +} diff --git a/index.html b/index.html index 7728a484b5ff2..8443b99d7a3d9 100644 --- a/index.html +++ b/index.html @@ -2,6 +2,7 @@ layout: default --- +

Projects

{% include project-previews.html %}