nutribot-chat-server / about.html
j1225d's picture
Role: You are an expert Python backend developer specializing in building AI-powered services.
3f46192 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About NutriBot - IronCore Fitness</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-8">
<div class="max-w-4xl mx-auto">
<div class="bg-white rounded-lg shadow-lg p-8 mb-6">
<div class="text-center mb-8">
<div class="inline-flex items-center justify-center w-20 h-20 bg-green-100 rounded-full mb-4">
<i data-feather="zap" class="w-10 h-10 text-green-600"></i>
</div>
<h1 class="text-4xl font-bold text-gray-800 mb-2">About NutriBot</h1>
<p class="text-lg text-gray-600">Your AI-Powered Nutrition Assistant</p>
</div>
<div class="grid md:grid-cols-2 gap-8 mb-8">
<div>
<h2 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center gap-2">
<i data-feather="target" class="w-6 h-6 text-green-600"></i>
Our Mission
</h2>
<p class="text-gray-600 mb-4">
NutriBot is designed to make nutrition advice accessible and personalized for fitness enthusiasts.
We combine cutting-edge AI technology with proven nutritional science to help you make informed
food choices that support your fitness goals.
</p>
<p class="text-gray-600">
Whether you're looking for post-workout meal suggestions, calorie information, or general
nutrition guidance, NutriBot is here to help 24/7.
</p>
</div>
<div>
<h2 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center gap-2">
<i data-feather="star" class="w-6 h-6 text-green-600"></i>
Key Features
</h2>
<ul class="space-y-3">
<li class="flex items-start gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
<span class="text-gray-600">Instant nutrition and fitness food advice</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
<span class="text-gray-600">Personalized conversation memory</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
<span class="text-gray-600">High-protein meal recommendations</span>
</li>
<li class="flex items-start gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600 mt-0.5"></i>
<span class="text-gray-600">Calorie estimates for common foods</span>
</li>
</ul>
</div>
</div>
<div class="bg-green-50 rounded-lg p-6 mb-8">
<h2 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center gap-2">
<i data-feather="shield" class="w-6 h-6 text-green-600"></i>
Safety & Guidelines
</h2>
<div class="grid md:grid-cols-2 gap-4">
<div class="flex items-start gap-2">
<i data-feather="alert-circle" class="w-5 h-5 text-yellow-600 mt-0.5"></i>
<div>
<p class="font-semibold text-gray-800">Medical Disclaimer</p>
<p class="text-sm text-gray-600">We provide general nutrition advice, not medical diagnosis or treatment</p>
</div>
</div>
<div class="flex items-start gap-2">
<i data-feather="info" class="w-5 h-5 text-blue-600 mt-0.5"></i>
<div>
<p class="font-semibold text-gray-800">Calorie Estimates</p>
<p class="text-sm text-gray-600">All calorie counts are approximations and may vary</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<a href="/" class="inline-flex items-center gap-2 bg-green-600 text-white px-6 py-3 rounded-lg hover:bg-green-700 transition-colors">
<i data-feather="message-circle" class="w-5 h-5"></i>
Try NutriBot Now
</a>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>