Next.js app — chat interface, auth, settings, PWA manifest

This commit is contained in:
2026-04-26 02:05:09 -04:00
parent 241acf2b52
commit 996c4e19a7
12 changed files with 1161 additions and 122 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"name": "Aaron AI",
"short_name": "Aaron AI",
"description": "Personal knowledge assistant",
"start_url": "/",
"display": "standalone",
"background_color": "#faf9f6",
"theme_color": "#2d5a3d",
"orientation": "portrait-primary",
"icons": [
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"shortcuts": [
{
"name": "Capture",
"url": "/capture",
"description": "Quick capture voice, photo or note"
}
]
}