from django.urls import path         

from .views import (
    home_view, about_view,
    policies_view,
    investment_plans_view, handle_referral_link,
    handle_contact_us, team_view,
    contact_view, faq_view, market_view,
    service_view, buy_sell_view,
    legal_view, team_view, affiliate_view
    )

app_name  = "zeeprimeapp"
urlpatterns = [
    path("", home_view, name="home"),
    path("ref=<str:username>/", handle_referral_link, name="referral_link"),
    path("about-us/", about_view, name="about_us"),
    path("terms-and-conditions/", policies_view, name="policies"),
    path("investment-plans/", investment_plans_view, name="investment_plans"),
    path("contact-us-reply-user/", handle_contact_us, name="handle_contact_us"),
    path("our-team/", team_view, name="team"),
    path("contact-us/", contact_view, name="contact_us"),
    path("frequently-asked-questions/", faq_view, name="faq"),
    path("market-place/", market_view, name="market"),
    path("our-services/", service_view, name="service"),
    path("buy-and-sell/", buy_sell_view, name="buysell"),
    path("legal/", legal_view, name="legal"),
    path("team/", team_view, name="team"),
    path("affiliate-program/", affiliate_view, name="affiliate"),
]
