Add requirements.txt, tailwind configuration, and initial truth report HTML

- Created requirements.txt with a comprehensive list of dependencies.
- Added tailwindconfig.js for Tailwind CSS configuration.
- Introduced truth_report.html with structured content and Tailwind CSS styling for a visually appealing layout.
This commit is contained in:
bolade
2025-09-26 16:37:46 +01:00
parent 4a61dd7898
commit 1ae1ec2369
19 changed files with 1564 additions and 1667 deletions
+157
View File
@@ -0,0 +1,157 @@
<html>
<head>
<title>Truth Report</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<div class="bg-white w-full page m-0 px-10">
<div class="px-16 py-10">
<!-- Table of Contents Header -->
<div class="mb-8">
<h1 class="text-4xl font-bold text-black mb-6 tracking-wide"></h1>
TABLE OF CONTENTS
</h1>
<div class="w-full h-1 bg-cyan-400"></div>
</div>
<div class="flex items-start bg-gray-200 h-24">
<div
class="bg-black text-white text-2xl font-bold w-16 h-full flex items-center justify-center mr-8 flex-shrink-0"
>
5
</div>
<div class="flex flex-col py-1 bg-green-200 flex-1 justify-center h-full">
<h2 class="text-2xl font-semibold text-black">
Fuel Utilizationd
</h2>
</div>
</div>
<!-- Table of Contents Items -->
<div class="flex flex-col justify-between space-y-6 pt-6">
<!-- Lung Analysis -->
<div class="flex items-start bg-gray-200 rounded-lg mb-2">
<div class="bg-black text-white text-2xl font-bold w-16 h-full flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
3
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Lung Analysis
</h2>
<div class="space-y-2">
<p class="text-gray-600 text-base">
Pulse Oximetry Assessment
</p>
<p class="text-gray-600 text-base">
Spirometry Assessment
</p>
</div>
</div>
</div>
<!-- Cardio Metrics -->
<div class="flex items-start bg-gray-200 rounded-lg p-6">
<div class="bg-black text-white text-2xl font-bold w-16 h-16 flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
4
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Cardio Metrics
</h2>
<div class="space-y-2">
<p class="text-gray-600 text-base">
Active Metabolic Rate Assessment
</p>
</div>
</div>
</div>
<div class="flex items-center bg-gray-200 p-6">
<div class="flex items-center justify-center w-20 h-20 bg-black text-white text-4xl font-semibold mr-6">
4
</div>
<div>
<h1 class="text-4xl font-normal">Nutrition Guidelines</h1>
<p class="text-lg">Ultrasound & Body Composition Assessment</p>
<p class="text-lg">Resting Metabolic Rate Assessment</p>
</div>
</div>
<!-- Fuel Utilization -->
<div class="flex items-start bg-gray-200 rounded-lg p-6">
<div class="bg-black text-white text-2xl font-bold w-16 h-16 flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
5
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Fuel Utilization
</h2>
<div class="space-y-2">
<!-- No sub-items -->
</div>
</div>
</div>
<!-- Local Muscle Activity -->
<div class="flex items-start bg-gray-200 rounded-lg p-6">
<div class="bg-black text-white text-2xl font-bold w-16 h-16 flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
9
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Local Muscle Activity
</h2>
<div class="space-y-2">
<!-- No sub-items -->
</div>
</div>
</div>
<!-- Training Recommendations -->
<div class="flex items-start bg-gray-200 rounded-lg p-6">
<div class="bg-black text-white text-2xl font-bold w-16 h-16 flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
10
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Training Recommendations
</h2>
<div class="space-y-2">
<!-- No sub-items -->
</div>
</div>
</div>
<!-- Next Steps -->
<div class="flex items-start bg-gray-200 rounded-lg p-6">
<div class="bg-black text-white text-2xl font-bold w-16 h-16 flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
12
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Next Steps
</h2>
<div class="space-y-2">
<!-- No sub-items -->
</div>
</div>
</div>
<!-- Glossary -->
<div class="flex items-start bg-gray-200 rounded-lg p-6">
<div class="bg-black text-white text-2xl font-bold w-16 h-16 flex items-center justify-center rounded-lg mr-8 flex-shrink-0">
13
</div>
<div class="flex-1">
<h2 class="text-2xl font-semibold text-black mb-3">
Glossary
</h2>
<div class="space-y-2">
<!-- No sub-items -->
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>