feat: add "Request a Quote" section to product comparison page and enhance CSS styles
All checks were successful
continuous-integration/drone/push Build is passing

- Introduced a new section for "Request a Quote" in product-comparison.html, positioned after the warranty details for better visibility.
- Updated main.css with new utility classes for widths and padding to support the new layout and improve overall styling consistency.
This commit is contained in:
George Birikorang 2025-09-18 03:54:59 -07:00
parent 4d901448eb
commit 0a4494bc44
2 changed files with 39 additions and 0 deletions

View file

@ -408,6 +408,21 @@
</div> </div>
</section> </section>
<!-- Centered Request a Quote (after Warranty, before Features) -->
<section class="bg-white pt-16 pb-2">
<div class="max-w-7xl mx-auto px-5">
<div class="mx-auto w-1/3 h-px bg-light-silver mb-6"></div>
<div class="flex justify-center">
<a
href="contact.html"
class="inline-flex items-center justify-center w-full md:w-auto px-8 h-[64px] min-h-[64px] bg-white text-black font-playfair font-light text-[20px] leading-none rounded-[15px] border border-quick-silver hover:bg-black hover:text-white hover:shadow-lg transform hover:-translate-y-0.5 transition-all duration-200 box-border whitespace-nowrap mb-2"
>
Request a Quote
</a>
</div>
</div>
</section>
<!-- Action Buttons Section --> <!-- Action Buttons Section -->
<div class="max-w-7xl mx-auto px-5"> <div class="max-w-7xl mx-auto px-5">
<div class="flex items-stretch py-8 ml-8"> <div class="flex items-stretch py-8 ml-8">

View file

@ -1083,6 +1083,14 @@ video {
width: 95vw; width: 95vw;
} }
.w-24 {
width: 6rem;
}
.w-1\/3 {
width: 33.333333%;
}
.max-w-2xl { .max-w-2xl {
max-width: 42rem; max-width: 42rem;
} }
@ -1722,6 +1730,18 @@ video {
padding-top: 1rem; padding-top: 1rem;
} }
.pt-16 {
padding-top: 4rem;
}
.pb-2 {
padding-bottom: 0.5rem;
}
.pt-8 {
padding-top: 2rem;
}
.text-center { .text-center {
text-align: center; text-align: center;
} }
@ -2317,6 +2337,10 @@ video {
width: auto; width: auto;
} }
.md\:w-64 {
width: 16rem;
}
.md\:grid-cols-2 { .md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-columns: repeat(2, minmax(0, 1fr));
} }