from django.urls import path , include
from .views import *

urlpatterns = [
    path('' , home , name='home'),
    path('contact/' , contact , name='contact'),
    path('about/' , about , name='about-us'),
    path('services/' , services , name='services' ),
    path('portfolio/' , portfolio , name='portfolio'),
]
