from django.urls import path
from .views import PaginaIndex, PaginaInicial, SobreView 



urlpatterns = [
    path('', PaginaInicial.as_view(), name= 'index'),
    path('inicio/', PaginaIndex.as_view(), name= 'inicio'),
    path('sobre/', SobreView.as_view(), name= 'sobre'),
]