from django.urls import path
from django_distill import distill_path
from . import views

app_name = 'dba_app'

urlpatterns = [
    distill_path('', views.index, name='index'),
    distill_path('a-propos/', views.about, name='about'),
    distill_path('services/', views.services, name='services'),
    distill_path('equipe/', views.equipe, name='equipe'),
    distill_path('clients/', views.clients, name='clients'),
    distill_path('contact/', views.contact, name='contact'),
]