Skip to content
Closed
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
Empty file added .Jules/palette.md
Empty file.
258 changes: 258 additions & 0 deletions pnpm-lock.yaml

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

3 changes: 3 additions & 0 deletions web/src/components/NoteCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export function NoteCard({ note, onDelete, onShare, onAskAI }: NoteCardProps) {
onAskAI(note);
}}
title="Ask AI"
aria-label={`Ask AI about ${note.title || "Untitled Note"}`}
>
<Sparkles className="w-4 h-4" />
</Button>
Expand All @@ -73,6 +74,7 @@ export function NoteCard({ note, onDelete, onShare, onAskAI }: NoteCardProps) {
onShare(note);
}}
title="Share"
aria-label={`Share ${note.title || "Untitled Note"}`}
>
<Share2 className="w-4 h-4" />
</Button>
Expand All @@ -86,6 +88,7 @@ export function NoteCard({ note, onDelete, onShare, onAskAI }: NoteCardProps) {
onDelete(note);
}}
title="Delete"
aria-label={`Delete ${note.title || "Untitled Note"}`}
>
<Trash2 className="w-4 h-4" />
</Button>
Expand Down
Loading