botserver/web/app/public/sounds/manifest.ts
Rodrigo Rodriguez (Pragmatismo) dfe7e4e4b6 Add About and Login pages with responsive design and user authentication
- Created a new About page (index.html) detailing the BotServer platform, its features, and technology stack.
- Developed a Login page (login.html) with sign-in and sign-up functionality, including form validation and user feedback messages.
- Removed the empty style.css file as it is no longer needed.
2025-10-26 00:02:19 -03:00

13 lines
433 B
TypeScript

export const soundAssets = {
send: '/assets/sounds/send.mp3',
receive: '/assets/sounds/receive.mp3',
typing: '/assets/sounds/typing.mp3',
notification: '/assets/sounds/notification.mp3',
click: '/assets/sounds/click.mp3',
hover: '/assets/sounds/hover.mp3',
success: '/assets/sounds/success.mp3',
error: '/assets/sounds/error.mp3'
} as const;
// Type for sound names
export type SoundName = keyof typeof soundAssets;