quantum-ai-v2/core/urls.py
Claude bf8cc1817e Add rich link previews + event page integration
- Add comprehensive Open Graph meta tags for rich social sharing
- Generate social media assets (og-image.png, favicons)
- Implement Twitter Card support for enhanced Twitter sharing
- Add SEO meta tags for improved search engine visibility
- Create event page with JotForm integration (/event/)
- Add customizable meta blocks for individual page optimization

🔗 Links now show rich previews with title, description, and branded image
📱 Professional favicons across all devices and platforms

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-15 17:09:29 +05:30

13 lines
468 B
Python

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