feat: add scroll-to-bottom on mount with reusable hook
Implement automatic scroll-to-bottom when chat loads using a new
useScrollToBottom hook. The hook provides configurable scroll behavior
for initial mount and content changes, improving UX by showing the most
recent messages immediately.
- Add useScrollToBottom hook with scrollOnMount, delay, and animated options
- Integrate onContentSizeChange to detect when to scroll
- Non-animated scroll on mount, animated scroll when sending messages
- Reusable across any list/chat component