Skip to content
Closed
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
29 changes: 29 additions & 0 deletions src/views/Projects.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup>

Check warning on line 1 in src/views/Projects.vue

View workflow job for this annotation

GitHub Actions / lint

Component name "Projects" should always be multi-word
import { ref, computed } from 'vue';

// Ongoing projects (In Development, Planning, etc.)
Expand Down Expand Up @@ -48,6 +48,35 @@
dataTest: 'project-calculator',
images: [],
},
{
title: 'Nurtured Heart AI',
description: 'A web service that generates heartfelt, meaningful compliments using the Nurtured Heart Approach. Features local LLM processing with Ollama and a beautiful Vue.js frontend.',
technologies: ['Vue.js', 'Python', 'FastAPI', 'Ollama', 'PrimeVue', 'Vite', 'Llama 3.2', 'Docker'],
skillsLeveraged: [
'Full-Stack Development',
'Local LLM Integration',
'API Design & Development',
'Vue.js Development',
'Python Backend Development',
'AI/ML Application Architecture',
'Prompt Engineering',
'Docker Containerization',
'Responsive UI Design'
],
status: 'In Development',
github: 'https://github.com/jakekohl/nurtured-heart-ai',
demo: 'https://nurtured-heart-ai.vercel.app',
features: [
'Local LLM-powered compliment generation with Ollama',
'Nurtured Heart Approach methodology integration',
'FastAPI backend with real-time processing',
'Beautiful Vue.js + PrimeVue frontend',
'Personalized compliments with context and tone options',
'Containerized deployment with Docker',
],
dataTest: 'project-nurtured-heart-ai',
images: [],
},
]);

// Completed projects
Expand Down
Loading