Features.vue 3.5 KB

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