Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix(home): fix category display order, add aria-label to template cards
  • Loading branch information
waleedlatif1 committed Mar 15, 2026
commit fcd3cf514130dfc1defc5c5b6b63789fbdccb5d3
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ export type ModuleTag = keyof typeof MODULE_META
export const CATEGORY_META = {
popular: { label: 'Popular' },
sales: { label: 'Sales & CRM' },
productivity: { label: 'Productivity' },
engineering: { label: 'Engineering' },
support: { label: 'Support' },
engineering: { label: 'Engineering' },
marketing: { label: 'Marketing & Content' },
productivity: { label: 'Productivity' },
operations: { label: 'Operations' },
} as const
Comment thread
waleedlatif1 marked this conversation as resolved.

Comment thread
waleedlatif1 marked this conversation as resolved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ function TemplateCard({ template, onSelect }: TemplateCardProps) {
<button
type='button'
onClick={() => onSelect(template.prompt)}
aria-label={`Select template: ${template.title}`}
className='group flex cursor-pointer flex-col text-left'
>
Comment thread
waleedlatif1 marked this conversation as resolved.
<div className='overflow-hidden rounded-[10px] border border-[var(--border-1)]'>
Expand Down
Loading