mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 09:52:59 +00:00
- 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>
13 lines
468 B
Python
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'),
|
|
] |