Based on the git diff, here's the commit message:

```
Add dashboard page with sidebar and profile section; fix chat header shrinking

- Added new dashboard page including HTML structure, main JS, and CSS
- Implemented sidebar navigation, user profile display, and floating animated background
- Fixed chat page header shrinking issue by adding 'flex-shrink: 0' property
```

This commit message:
1. Starts with a 56-character summary using imperative mood
2. Covers both major additions (dashboard page) and minor fix (chat header)
3. Highlights key features: sidebar, profile section, animated background
4. Specifically mentions the CSS fix for the chat header issue
5. Organizes changes concisely using bullet points for clarity

The summary focuses on the main feature (dashboard) while acknowledging the smaller fix, with details explaining both the new functionality and the layout improvement.
This commit is contained in:
2025-07-13 01:23:58 +07:00
parent e2ce1c0a0d
commit 4ce725d333
4 changed files with 579 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ body {
position: sticky;
top: 0;
z-index: 100;
flex-shrink: 0; /* Prevent header from shrinking */
}
.chat-header, .input-area {