from django.urls import path
from apps.site_ama.views import index, vitrine, contato, historia, noticias, proposito,vitrine, buscar, detalhes_noticias, manutencao

urlpatterns = [
    path('', index, name='index'),
    path('vitrine/', vitrine, name='produtos'),
    path('contato/', contato, name='contato'),
    path('historia/', historia, name='historia'),
    path('noticias/', noticias, name='noticias'),
    path('proposito/', proposito, name='proposito'),
    path('vitrine/', vitrine, name='vitrine'),
    path('buscar/', buscar, name="buscar"),
    path('detalhes_noticias/<int:noticia_id>/', detalhes_noticias, name='detalhes_noticias'),
    path('manutencao/', manutencao, name='manutencao'),
]