from django.urls import path

from .views import about, contact, home, photoGallery, news, screenReader, siteMap


urlpatterns = [
    path('', home, name='home'),
    path('about', about, name='about'),
    path('contact-us', contact, name='contact-us'),
    path('photo-gallery', photoGallery, name='photo-gallery'),
    path('news', news, name='news'),
    path('screen-reader', screenReader, name='screen-reader'),
    path('site-map', siteMap, name='site-map'),
    
]
