MarketingGrid.vue 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <section class="mx-auto max-w-[940px] flex flex-col px-6 py-8 lg:py-16">
  3. <h2 class="font-inter text-white font-bold text-[28px] leading-[28px] text-center mb-16 lg:text-5xl lg:leading-[48px]">
  4. These images <span class="text-pink-500">give a lot more</span> than other PHP Docker Images.
  5. </h2>
  6. <div class="grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3">
  7. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  8. <img src="/images/icons/rocket-square.svg" class="w-11 h-11 mb-2"/>
  9. <span class="font-inter text-lg text-slate-50 font-bold mb-2">Production-ready</span>
  10. <span class="font-inter text-slate-300 text-base">Built to be performant and secure to exist on the wild web.</span>
  11. </div>
  12. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  13. <img src="/images/icons/heart-square.svg" class="w-11 h-11 mb-2"/>
  14. <span class="font-inter text-lg text-slate-50 font-bold mb-2">Native Health Checks</span>
  15. <span class="font-inter text-slate-300 text-base">Be 100% confident your application is actually running.</span>
  16. </div>
  17. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  18. <img src="/images/icons/lightning-square.svg" class="w-11 h-11 mb-2"/>
  19. <span class="font-inter text-lg text-slate-50 font-bold mb-2">High Performance</span>
  20. <span class="font-inter text-slate-300 text-base">Get the easiest experience for fine tuning performance.</span>
  21. </div>
  22. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  23. <img src="/images/icons/stars-square.svg" class="w-11 h-11 mb-2"/>
  24. <span class="font-inter text-lg text-slate-50 font-bold mb-2">Customizable & Flexible</span>
  25. <span class="font-inter text-slate-300 text-base">Environment variables make customizations a breeze.</span>
  26. </div>
  27. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  28. <img src="/images/icons/cloudflare-square.svg" class="w-11 h-11 mb-2"/>
  29. <span class="font-inter text-lg text-slate-50 font-bold mb-2">Native CloudFlare Support</span>
  30. <span class="font-inter text-slate-300 text-base">Get real IP addresses from visitors from trusted proxies.</span>
  31. </div>
  32. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  33. <img src="/images/icons/php-square.svg" class="w-11 h-11 mb-2"/>
  34. <span class="font-inter text-lg text-slate-50 font-bold mb-2">Based on official PHP</span>
  35. <span class="font-inter text-slate-300 text-base">Upgrade from the official PHP docker images with confidence.</span>
  36. </div>
  37. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  38. <img src="/images/icons/nginx-square.svg" class="w-11 h-11 mb-2"/>
  39. <span class="font-inter text-lg text-slate-50 font-bold mb-2">NGINX Unit</span>
  40. <span class="font-inter text-slate-300 text-base">Ditch FPM for a modern way of running PHP. Designed for containers from the ground up.</span>
  41. </div>
  42. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  43. <img src="/images/icons/logging-square.svg" class="w-11 h-11 mb-2"/>
  44. <span class="font-inter text-lg text-slate-50 font-bold mb-2">Unified Logging</span>
  45. <span class="font-inter text-slate-300 text-base">All logs are directed to STDOUT & STDERR for centralized output.</span>
  46. </div>
  47. <div class="p-4 bg-gray-900 rounded-lg flex flex-col">
  48. <img src="/images/icons/heartbeat-square.svg" class="w-11 h-11 mb-2"/>
  49. <span class="font-inter text-lg text-slate-50 font-bold mb-2">FPM + S6 Overlay</span>
  50. <span class="font-inter text-slate-300 text-base">Our FPM-Apache & FPM-NGINX images use this intelligent init system.</span>
  51. </div>
  52. </div>
  53. </section>
  54. </template>