from django.urls import path, include
from .views import *
urlpatterns = [
    path('', home, name='home'),
    path('menu/', menu, name='menu'),
    path('reservations/', reservations, name='reservations'),
    path('contact/', contact, name='contact'),
    path('book/', book_table, name='book_table'),
]
