1from django.urls import path 2 3from .views import landing 4 5urlpatterns = [ 6 path('', landing, name='landing'), 7] 8 9