Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .gitignore
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,6 +10,15 @@ out/
.test-fixtures/
*.log
*.png
# Canonical brand icons are generated from @mind-studio/ui/brand (npm run gen:icons)
# and committed so the favicon/PWA/apple-touch assets ship with the app.
!src/app/apple-icon.png
!public/icon-192.png
!public/icon-512.png
# Tauri desktop icons — regenerated from the same canonical mark
# (npm run gen:tauri-icons) and committed so the bundled app matches the brand.
!src-tauri/icons/*.png
!src-tauri/icons/**/*.png
.env
.env*.local
.DS_Store
Expand Down
40 changes: 33 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,6 +7,8 @@
"build": "next build",
"start": "next start -p 3100",
"typecheck": "tsc --noEmit",
"gen:icons": "node scripts/gen-icons.mjs",
"gen:tauri-icons": "npm run gen:icons && tauri icon src-tauri/icons/app-icon.png",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
Expand All@@ -31,7 +33,7 @@
"@inrupt/solid-client-authn-browser": "^4.0.0",
"@inrupt/solid-client-authn-node": "^3.1.0",
"@mind-studio/core": "^0.7.0",
"@mind-studio/ui": "^0.5.0",
"@mind-studio/ui": "^0.7.0",
"@tauri-apps/api": "^2.11.0",
"lucide-react": "^0.460.0",
"next": "16.2.6",
Expand All@@ -47,6 +49,7 @@
"@types/react-dom": "^19",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5",
Expand Down
Binary file addedpublic/icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file addedpublic/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading