1from django.shortcuts import render 2 3 4# Create your views here. 5def landing(request): 6 return render(request, "landing/landing.html") 7 8