sethmcknight
Implement initial Flask application with health check endpoint, basic HTML template, and styling; add unit tests for endpoints
e3e3a84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PolicyWise</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>PolicyWise</h1>
<p class="subtitle">Your Intelligent Policy Assistant</p>
</header>
<main>
<div class="coming-soon">
<h2>Coming Soon</h2>
<p>We're putting the finishing touches on our revolutionary RAG-powered chatbot. Get ready to have your policy questions answered instantly.</p>
</div>
</main>
<footer>
<p>&copy; 2025 MSSE AI Engineering Project</p>
</footer>
</div>
</body>
</html>