mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 13:32:59 +00:00
- Fix secondary buttons with white background/border invisibility - Improve disabled button states with proper contrast ratios - Update form element borders for better visibility - Establish unified color system with CSS variables - Replace 11 random gradient classes with 4 professional ones - Fix authentication page styling and button definitions - Ensure accessibility compliance with visible interactive elements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
625 B
Python
15 lines
625 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'core'
|
|
|
|
urlpatterns = [
|
|
path('', views.homepage_view, name='homepage'),
|
|
path('marketplace/', views.marketplace_view, name='marketplace'),
|
|
path('pricing/', views.pricing_view, name='pricing'),
|
|
path('agents/<slug:agent_slug>/', views.agent_detail_view, name='agent_detail'),
|
|
path('wallet/', views.wallet_view, name='wallet'),
|
|
path('wallet/topup/', views.wallet_topup_view, name='wallet_topup'),
|
|
path('stripe/webhook/', views.stripe_webhook_view, name='stripe_webhook'),
|
|
path('api/agents/', views.agents_api_view, name='agents_api'),
|
|
] |