improve: Enhance UI appearance and startup logs

UI improvements:
- Remove CV page borders for cleaner look in both themes
- Soften light theme shadow (0.06 opacity, 24px blur)
- Set light theme border color to white for seamless appearance

Server improvements:
- Add descriptive icons to startup logs (📂 🇬🇧 🇪🇸 ⚙️ 📦 📋 🌐 ⏹️)
- Improve visual clarity of server initialization sequence
This commit is contained in:
juanatsap
2025-11-20 16:52:30 +00:00
parent 9240a863d1
commit 29a00f432b
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -93,12 +93,12 @@ func (m *Manager) loadTemplates() error {
if err != nil {
log.Printf("Warning: error parsing partials: %v", err)
} else {
log.Printf(" Loaded %d partial templates", len(allPartials))
log.Printf("📦 Loaded %d partial templates", len(allPartials))
}
}
m.templates = tmpl
log.Printf(" Templates loaded successfully from %s", m.config.Dir)
log.Printf("📋 Templates loaded successfully from %s", m.config.Dir)
return nil
}