from django.urls import path from . import seo, views urlpatterns = [ path("robots.txt", seo.robots_txt, name="robots_txt"), path("sitemap.xml", seo.sitemap_xml, name="sitemap_xml"), path("llms.txt", seo.llms_txt, name="llms_txt"), path("", views.index, name="public_index"), path("chat", views.chat, name="chat"), path("ai_education", views.ai_education, name="ai_education"), path("computer", views.computers, name="computers"), path("web_design", views.web_design, name="web_design"), path("ai_sensor", views.ai_sensor, name="ai_sensor"), path("file_hosting", views.file_hosting, name="file_hosting"), path("bot_creation", views.bot, name="bot"), path("forward-deployed-ai", views.forward_deployed, name="forward_deployed"), path("ml_model", views.ml_model, name="ml_model"), path("contact", views.contact, name="contact"), path("terms", views.terms_of_service, name="terms_of_service"), path("change_password", views.change_password, name="change_password"), path("preview_email//", views.preview_email, name="preview_email") ]