File "single.php"

Full path: /home/u525140468/domains/productsizer.com/public_html/inc/single.php
File size: 4.29 B (4.29 KB bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<!-- Hero Section -->
<section class="relative bg-blue-x pt-24 pb-40 overflow-hidden">
<div class="absolute top-[30%] left-0 w-[1128px] h-[336px] rounded-[500px] z-0 opacity-20 blur-[100px] will-change-transform bg-[linear-gradient(90deg,_#B5CEFF_-0.55%,_#195EE6_45.76%,_#BED5FF_99.34%)]"></div>
  <div class="max-w-5xl mx-auto px-6 text-center">
    <h1 class="text-4xl md:text-5xl font-semibold text-gray-900 leading-tight">
      Email Spam Checker Tool
    </h1>
    <p class="mt-4 text-gray-600 text-lg max-w-2xl mx-auto">
      Instantly analyze your email headers and body to improve inbox placement.
    </p>
  </div>
</section>

<!-- Tool Container – pulled up over the bottom of the hero via negative margin -->
<div class="max-w-5xl mx-auto px-6 relative z-20 -mt-36 md:-mt-44 lg:-mt-32">
  <div class="bg-white shadow-xl2 rounded-3xl p-6 md:p-6 border border-gray-200 transition-all duration-300">
    <h2 class="text-xl font-semibold text-gray-800 mb-4">Paste your email content</h2>
    <textarea
      class="w-full h-72 p-4 border border-gray-300 rounded-xl resize-none text-sm placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-blue-500 bg-gray-50 transition"
      placeholder="Paste your full email or headers here..."></textarea>
    <div class="flex justify-end mt-6">
      <button
        class="inline-flex items-center gap-2 bg-blue-600 hover:bg-blue-700 text-white px-6 py-2.5 rounded-xl text-sm font-medium shadow-md hover:scale-[1.03] transition-transform duration-200">
        <i data-lucide="scan-line" class="w-5 h-5"></i>
        Analyze Now
      </button>
    </div>
  </div>
</div>

<!-- Article Section -->
<section class="bg-white pt-24 pb-28 relative z-10">
  <div class="max-w-5xl mx-auto px-6">
    <h3 class="text-2xl font-bold text-gray-800 mb-4">How It Helps You</h3>
    <p class="text-gray-600 leading-relaxed mb-10 text-base">
      Get deeper insight into how your emails are treated by spam filters. Fix domain issues, improve structure, and deliver confidently.
    </p>

    <div class="grid md:grid-cols-2 gap-6">
      <div
        class="bg-gray-50 p-6 rounded-2xl shadow-sm border hover:shadow-md transition-all duration-200 flex gap-4 items-start">
        <div class="bg-blue-100 rounded-full p-3">
          <i data-lucide="zap" class="w-6 h-6 text-blue-500"></i>
        </div>
        <div>
          <h4 class="font-semibold text-gray-800 text-lg mb-1">Spam Word Detection</h4>
          <p class="text-sm text-gray-600">
            Finds risky phrases and formatting issues commonly flagged by filters.
          </p>
        </div>
      </div>

      <div
        class="bg-gray-50 p-6 rounded-2xl shadow-sm border hover:shadow-md transition-all duration-200 flex gap-4 items-start">
        <div class="bg-green-100 rounded-full p-3">
          <i data-lucide="shield-check" class="w-6 h-6 text-green-500"></i>
        </div>
        <div>
          <h4 class="font-semibold text-gray-800 text-lg mb-1">DNS Validation</h4>
          <p class="text-sm text-gray-600">
            Checks SPF, DKIM, and DMARC alignment to boost trust with inbox providers.
          </p>
        </div>
      </div>

      <div
        class="bg-gray-50 p-6 rounded-2xl shadow-sm border hover:shadow-md transition-all duration-200 flex gap-4 items-start">
        <div class="bg-yellow-100 rounded-full p-3">
          <i data-lucide="link-2" class="w-6 h-6 text-yellow-500"></i>
        </div>
        <div>
          <h4 class="font-semibold text-gray-800 text-lg mb-1">Link Scanner</h4>
          <p class="text-sm text-gray-600">
            Analyzes URLs and images for blacklisted or suspicious sources.
          </p>
        </div>
      </div>

      <div
        class="bg-gray-50 p-6 rounded-2xl shadow-sm border hover:shadow-md transition-all duration-200 flex gap-4 items-start">
        <div class="bg-purple-100 rounded-full p-3">
          <i data-lucide="bar-chart-3" class="w-6 h-6 text-purple-500"></i>
        </div>
        <div>
          <h4 class="font-semibold text-gray-800 text-lg mb-1">Deliverability Score</h4>
          <p class="text-sm text-gray-600">
            Get an overall score and suggestions for better email performance.
          </p>
        </div>
      </div>
    </div>
  </div>
</section>