UI/UX Improvements: Modern design + hashtag system + cover images

- Added modern CSS design system with better typography
- Created hashtag/tag functionality with auto-tagging
- Improved homepage with hero section and trending tags
- Enhanced article pages with full-width cover images
- Added tag pages for filtering articles by hashtag
- Better mobile responsive design
- Smoother animations and transitions
- Auto-tag system analyzes content and assigns relevant tags
- 30+ predefined AI-related tags (ChatGPT, OpenAI, etc.)
This commit is contained in:
Zeya Phyo
2026-02-19 13:49:45 +00:00
parent afa8fb8d78
commit 161dce1501
8 changed files with 1616 additions and 0 deletions

36
push-to-git.sh Executable file
View File

@@ -0,0 +1,36 @@
#!/bin/bash
# Push Burmddit to git.qikbite.asia using token
echo "Burmddit Git Push Script"
echo "========================"
echo ""
# Check if token is provided
if [ -z "$1" ]; then
echo "Usage: ./push-to-git.sh YOUR_ACCESS_TOKEN"
echo ""
echo "Get your token from:"
echo " https://git.qikbite.asia → Settings → Access Tokens"
echo ""
exit 1
fi
TOKEN=$1
echo "Pushing to git.qikbite.asia..."
cd /home/ubuntu/.openclaw/workspace/burmddit
# Add token to remote URL
git remote set-url origin https://minzeyaphyo:${TOKEN}@git.qikbite.asia/minzeyaphyo/burmddit.git
# Push
git push -u origin main
if [ $? -eq 0 ]; then
echo ""
echo "✅ SUCCESS! Code pushed to:"
echo " https://git.qikbite.asia/minzeyaphyo/burmddit"
else
echo ""
echo "❌ FAILED! Check your token and repository access."
fi