feat: Comprehensive design assessments and optimizations for ThrillWiki

- Added critical design consistency assessment report highlighting major issues across various pages, including excessive white space and inconsistent element designs.
- Created detailed design assessment for park, ride, and company detail pages, identifying severe space utilization problems and poor information density.
- Documented successful layout optimization demonstration, showcasing improvements in visual design and user experience.
- Completed OAuth authentication testing for Google and Discord, confirming full functionality and readiness for production use.
- Conducted a thorough visual design examination report, identifying specific design flaws and inconsistencies, with recommendations for standardization and improvement.
This commit is contained in:
pacnpal
2025-06-27 21:29:12 -04:00
parent 4b11ec112e
commit 6781fa3564
24 changed files with 4240 additions and 284 deletions

View File

@@ -176,13 +176,10 @@ ACCOUNT_ADAPTER = "accounts.adapters.CustomAccountAdapter"
SOCIALACCOUNT_ADAPTER = "accounts.adapters.CustomSocialAccountAdapter"
# Social account settings
# OAuth provider configuration moved to database SocialApp objects
# This prevents conflicts between settings-based and database-based configurations
SOCIALACCOUNT_PROVIDERS = {
"google": {
"APP": {
"client_id": "135166769591-nopcgmo0fkqfqfs9qe783a137mtmcrt2.apps.googleusercontent.com",
"[SECRET-REMOVED]",
"key": "",
},
"SCOPE": [
"profile",
"email",
@@ -190,11 +187,6 @@ SOCIALACCOUNT_PROVIDERS = {
"AUTH_PARAMS": {"access_type": "online"},
},
"discord": {
"APP": {
"client_id": "1299112802274902047",
"[SECRET-REMOVED]",
"key": "",
},
"SCOPE": ["identify", "email"],
"OAUTH_PKCE_ENABLED": True,
}