from django.urls import path
from dj_static1 import views

urlpatterns = [
        #banner
        path('', views.home, name='home'),
        # path('aboutus/', views.about, name='about'),
        path('aboutus1/', views.about1, name='about'),
        # path('services/', views.services, name='services'),
        path('projects/', views.projects, name='projects'),
        path('pricing/', views.pricing, name='pricing'),
        path('vaastu/', views.vaastu, name='vaastu'),
        path('contacts/', views.contacts, name='contacts'),


        #service
        path('services/', views.services_page, name='services_page'),
        path('retail/', views.retail, name='retail'),
        path('residentail/', views.residentail, name='residential'),
        path('commercial/', views.commercial, name='commercial'),
        path('service/<slug:slug>/', views.service_detail, name="service_detail"),

        
]

