"""
Static Pages Views
"""
from django.shortcuts import render


def about_view(request):
    """About page"""
    context = {
        'title': 'حول الموقع - دليلك IQ',
        'description': 'تعرف على منصة دليلك IQ',
    }
    return render(request, 'static/about.html', context)


def terms_view(request):
    """Terms and conditions page"""
    context = {
        'title': 'الشروط والأحكام - دليلك IQ',
        'description': 'شروط وأحكام استخدام المنصة',
    }
    return render(request, 'static/terms.html', context)


def contact_view(request):
    """Contact page"""
    context = {
        'title': 'اتصل بنا - دليلك IQ',
        'description': 'تواصل معنا',
    }
    return render(request, 'static/contact.html', context)
