from django.urls import path

from . import views

urlpatterns = [
    path("<uuid:id>", views.galleryPage, name="single_gallery"),
    path("", views.shopPage, name="shop"),
    
    path("<slug:slug>", views.singlePage, name="single_product"),
]