Spaces:
Running
Running
File size: 3,521 Bytes
388aa42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}JanSahayak - Government Intelligence System{% endblock %}</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
{% block extra_css %}{% endblock %}
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<div class="nav-brand">
<i class="fas fa-hands-helping"></i>
<span>JanSahayak</span>
</div>
<ul class="nav-menu">
<li><a href="{{ url_for('index') }}" class="nav-link {% if request.path == '/' %}active{% endif %}">
<i class="fas fa-home"></i> Home
</a></li>
<li><a href="{{ url_for('about') }}" class="nav-link {% if request.path == '/about' %}active{% endif %}">
<i class="fas fa-info-circle"></i> About
</a></li>
<li><a href="{{ url_for('history') }}" class="nav-link {% if request.path == '/history' %}active{% endif %}">
<i class="fas fa-history"></i> History
</a></li>
</ul>
</div>
</nav>
<!-- Main Content -->
<main>
{% block content %}{% endblock %}
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3><i class="fas fa-hands-helping"></i> JanSahayak</h3>
<p>Multi-Agent Government Intelligence System</p>
<p class="text-muted">Powered by AI • Built with ❤️ for Citizens</p>
</div>
<div class="footer-section">
<h4>Features</h4>
<ul>
<li><i class="fas fa-check"></i> Government Schemes</li>
<li><i class="fas fa-check"></i> Competitive Exams</li>
<li><i class="fas fa-check"></i> Benefit Calculator</li>
<li><i class="fas fa-check"></i> AI-Powered Analysis</li>
</ul>
</div>
<div class="footer-section">
<h4>Technology</h4>
<ul>
<li><i class="fas fa-robot"></i> Groq LLaMA 3</li>
<li><i class="fas fa-brain"></i> LangChain + LangGraph</li>
<li><i class="fas fa-search"></i> RAG + Vector Search</li>
<li><i class="fas fa-globe"></i> Live Web Search</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 JanSahayak. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Custom JS -->
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>
|