feat(chat): enhance chat functionality with song integration and UI improvements

- Updated ChatHeader and ChatMessage components to support song selection and display.
- Enhanced useContentPanel to handle both film and song content, allowing for richer interactions.
- Improved FilmCard and added SongCard components for better media representation.
- Refactored environment variables for better configuration management.
- Updated .gitignore to include development chat history.

Made-with: Cursor
This commit is contained in:
Dorian
2026-03-02 18:16:04 +00:00
parent 6f79f0860d
commit 80aeefa4bf
27 changed files with 1751 additions and 143 deletions
@@ -0,0 +1,24 @@
<svg width="200" height="300" viewBox="0 0 200 300" fill="none" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip-poster">
<rect width="200" height="300" rx="12" fill="white"/>
</clipPath>
</defs>
<g clip-path="url(#clip-poster)">
<rect width="200" height="300" fill="currentColor" fill-opacity="0.15"/>
<g fill="currentColor" fill-opacity="0.2">
<rect x="8" y="12" width="16" height="24" rx="2"/>
<rect x="40" y="12" width="16" height="24" rx="2"/>
<rect x="72" y="12" width="16" height="24" rx="2"/>
<rect x="104" y="12" width="16" height="24" rx="2"/>
<rect x="136" y="12" width="16" height="24" rx="2"/>
<rect x="168" y="12" width="16" height="24" rx="2"/>
<rect x="8" y="48" width="16" height="24" rx="2"/>
<rect x="40" y="48" width="16" height="24" rx="2"/>
<rect x="72" y="48" width="16" height="24" rx="2"/>
<rect x="104" y="48" width="16" height="24" rx="2"/>
<rect x="136" y="48" width="16" height="24" rx="2"/>
<rect x="168" y="48" width="16" height="24" rx="2"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB