Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
88502e4
Fix: Regenerate package-lock.json for Azure deployment
AMackProjekt Jan 14, 2026
8bac7b1
Fix: ESLint compatibility, TypeScript checks, and quote escaping for …
AMackProjekt Jan 14, 2026
d50fceb
Fix: Reduce deployment size - exclude .next and out from git, deploy …
AMackProjekt Jan 14, 2026
3713300
Fix: Update deployment path and add directory listing for debugging
AMackProjekt Jan 14, 2026
b8f8033
Add Amazon book link to 'View on Amazon' button
AMackProjekt Jan 14, 2026
98f5dee
Remove QR code from contact section and add contact email details
AMackProjekt Jan 14, 2026
a2a08c1
Add reentry services page, update partnerships, add cyberpunk footer,…
AMackProjekt Jan 15, 2026
6bdfdf6
Update mentorship logo to KingMe and fix inline style linting errors
AMackProjekt Jan 15, 2026
1033854
Add Azure Functions backend API with health/readiness endpoints, proj…
AMackProjekt Jan 15, 2026
a1c84fc
Add QR code to interest form, mobile optimizations for navbar and cha…
AMackProjekt Jan 15, 2026
87c8ef9
Update homepage KPIs (Case Mgmnt, Resources), simplify interest form …
AMackProjekt Jan 15, 2026
4eff945
Fix ESLint errors - escape apostrophes
AMackProjekt Jan 15, 2026
1ca7dfc
Update version to 1.1.0 and fix build by excluding api/data-factory/p…
AMackProjekt Jan 15, 2026
2ebf176
Add social media integration and FREE SEO implementation guide
AMackProjekt Jan 16, 2026
953c1d1
Add social media automation system and SEO enhancements
AMackProjekt Jan 16, 2026
380dbc0
Add screenshot to README
AMackProjekt Jan 17, 2026
7cd7bf8
Initial plan
Copilot Jan 18, 2026
4310df6
Add @types/mssql to fix TypeScript build error
Copilot Jan 18, 2026
3928714
feat: Add comprehensive resource management system with Google Sheets…
AMackProjekt Jan 18, 2026
2801e5e
fix: Update dependencies and resolve security vulnerabilities
AMackProjekt Jan 18, 2026
e988c2f
fix: Resolve TypeScript type mismatches between Resource and SheetRes…
AMackProjekt Jan 18, 2026
55f3e42
feat: Add comprehensive client details page with tabs for overview, n…
AMackProjekt Jan 18, 2026
eb85613
feat: Add production-ready file upload/download system with export ca…
AMackProjekt Jan 18, 2026
4d47eb6
feat: Add portal sign-in links for existing users
AMackProjekt Jan 18, 2026
3a4a3c6
feat: Add AI Coach with motivational and inspirational coaching
AMackProjekt Jan 18, 2026
3edf60e
feat: Add Program Interest form for organizations to schedule demos
AMackProjekt Jan 18, 2026
39d6d41
feat: Add 30/60/90-Day Program tracking for case managers
AMackProjekt Jan 18, 2026
0db4e4e
fix: Repair corrupted code in client details page
AMackProjekt Jan 18, 2026
91be31d
feat: Add Daily/Weekly Journal with emotional wellness tracking
AMackProjekt Jan 18, 2026
a41abeb
feat: Add Windows installer build configuration (MSI/EXE)
AMackProjekt Jan 18, 2026
18bf512
Merge pull request #9 from AMackProjekt/copilot/add-typescript-defini…
AMackProjekt Jan 19, 2026
840a622
Upgrade eslint version to ^9.0.0
AMackProjekt Jan 19, 2026
ca7ffbe
Initial plan
Copilot Jan 26, 2026
e8d3d1f
Add founder contact card to homepage contact section
Copilot Jan 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 9 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules/
.next/
out/
api/
data-factory/
portal-app/
apps/
automation/
*.config.js
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["next/core-web-vitals"]
}
Loading