Add header and footer templates for report generation

- Created a footer template with contact information and page number.
- Created a header template displaying patient details including name, age, height, weight, and focus.
This commit is contained in:
bolade
2025-09-26 21:42:02 +01:00
parent 1ae1ec2369
commit 894fbbcee3
40 changed files with 805 additions and 1838 deletions
-27
View File
@@ -1,18 +1,4 @@
<div class="w-full page bg-white">
<!-- Header Section -->
<div class="bg-black text-white px-6 py-4 flex items-center justify-between">
<div class="flex items-center">
<div class="text-lg font-bold mr-2">ISHP</div>
<div class="w-6 h-4 bg-cyan-400 mr-8"></div>
</div>
<div class="flex space-x-8 text-sm">
<span>Name: Keirstyn Moran</span>
<span>Age: 34</span>
<span>Height: 5'4"</span>
<span>Weight: 123lbs</span>
<span>Focus: Endurance</span>
</div>
</div>
<!-- Main Content -->
<div class="px-8 py-6">
@@ -81,17 +67,4 @@
</div>
</div>
<!-- Footer Section -->
<div class="absolute bottom-0 left-0 right-0 bg-black text-white px-6 py-3">
<div class="flex justify-between items-center text-sm">
<div class="flex space-x-8">
<span>CONTACT: info@ishplabs.com</span>
<span>WEBSITE: www.ishplabs.com</span>
<span>SOCIAL: @ishplabs</span>
</div>
<div class="bg-white text-black font-bold px-3 py-1 text-lg">
14
</div>
</div>
</div>
</div>