mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 07:32:58 +00:00
- 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>
12 lines
416 B
Python
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'),
|
|
] |