def home(request):
    """Homepage view showing professional iching services information."""
    context = {
        'services': [
            {
                'name': '六爻占卜',
                'description': '传统六爻占卜，解答生活疑难。专业易经老师为您解卦。',
                'link': 'liuyao:liuyao-entry'
            },
            {
                'name': '八字命理',
                'description': '专业八字分析，了解人生方向。资深命理师为您解析。',
                'link': 'bazi_app:calculate_chart'
            },
            {
                'name': '通书万年历',
                'description': '精准农历、节气、八字、建除十二神查询。',
                'link': 'tongshu:current_month'
            }
        ]
    }
    return render(request, 'bazi_app/home.html', context) 