quantum-ai/core/urls.py
Claude 14f4078a48 🎨 Add comprehensive digital branding services page
- Add new /digital-branding/ route and view with rate limiting
- Create professional template matching homepage design aesthetic
- Implement SOSTAC+RACE methodology presentation with interactive elements
- Add responsive CSS following established design patterns
- Include Jotform integration for lead capture and contact forms
- Add header navigation link positioned after Home
- Features 6-section layout: hero, why choose us, process, services, CTA
- Mobile-responsive design with hover effects and animations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-01 18:43:24 +05:30

12 lines
416 B
Python

from django.urls import path
from . import views
app_name = 'core'
urlpatterns = [
path('', views.homepage_view, name='homepage'),
path('pricing/', views.pricing_view, name='pricing'),
path('digital-branding/', views.digital_branding_view, name='digital_branding'),
path('contact/', views.contact_form_view, name='contact_form'),
path('health/', views.health_check_view, name='health_check'),
]