Files
bio-performx/report_gen/page_1.html
T
bolade 1ae1ec2369 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.
2025-09-26 16:37:46 +01:00

46 lines
1.4 KiB
HTML

<div
class="w-full page bg-black text-white relative overflow-hidden"
>
<!-- ISHP Logo/Text -->
<div class="absolute top-8 left-8 z-20">
<h1 class="text-2xl font-bold tracking-wider">ISHP</h1>
</div>
<!-- Diagonal Cyan Stripe -->
<div class="absolute top-0 left-0 w-full h-full">
<div
class="absolute top-0 left-0 w-96 h-full bg-gradient-to-r from-cyan-300 to-cyan-400 transform -skew-x-12 origin-top-left"
></div>
</div>
<!-- Main Content Container -->
<div
class="relative z-10 flex flex-col justify-center items-end h-full pr-16"
>
<!-- BIO-PERFORMX Section -->
<div class="text-right mb-8">
<h1 class="text-6xl font-bold tracking-wider mb-2">BIO-PERFORMX</h1>
<p class="text-3xl italic font-light">Endurance</p>
</div>
<!-- Name and Date Section -->
<div class="text-right mt-16">
<h2 class="text-4xl font-bold tracking-wider mb-2">
{{ name|upper }}
</h2>
<h2 class="text-4xl font-bold tracking-wider mb-6">
{{ surname|upper }}
</h2>
<p class="text-xl italic underline">{{ date }}</p>
</div>
</div>
<!-- Dotted Pattern at Bottom -->
</div>
<style>
.grid-cols-20 {
grid-template-columns: repeat(20, minmax(0, 1fr));
}
</style>