from django.urls import path,
from .views import *
app_name = "shop"
urlpatterns = [
path('', views.index_page, name="home"),
path('notebooks/', notebooks_page, name="notebooks"),
path('smartphones/', smartphones_page, name="smartphones"),
]
path("", indclude("shop.urls"),