I read about it. To do this, it is recommended to use an application that creates a connection between other applications, call it web_site or a website, as you prefer.
python manage.py startapp my_site
Everything in this site application will be done in the usual way. In URL projects, you can import the URLs so that web pages display in the / url pattern.
urlpatterns = [ path('admin/', admin.site.urls), path('', include('my_site.urls')) ]
source share