Trade Rare & Exotic Fish with Confidence

Connect with collectors worldwide, list your prized specimens, and discover hidden gems.

Get Started

Features

Live Water Conditions

Real‑time monitoring of temperature, pH, and salinity for each listing.

Global Marketplace

Reach collectors from Tokyo to Toronto with seamless cross‑border trades.

Secure Payments

Integrated escrow and crypto options protect both buyer and seller.

What Collectors Say

Jane D.

"AquaRare helped me find a pristine Albino Angelfish that I thought was impossible to locate. The transaction was smooth and secure."

Ravi K.

"The live water data gave me confidence that the fish were healthy. I’ve never been so comfortable buying online."

Ready to Dive In?

Join our community of elite fish enthusiasts and start trading today.

Create Your Free Account

HTML Source Code

<header class="bg-white border-b border-gray-200">
  <nav class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4 flex items-center justify-between">
    <div class="flex items-center space-x-2">
      <div class="w-8 h-8 bg-teal-500 rounded-full"></div>
      <span class="text-2xl font-semibold text-teal-600">AquaRare</span>
    </div>
    <div class="hidden md:flex space-x-6 text-gray-600">
      <a href="#features" class="hover:text-teal-600 transition">Features</a>
      <a href="#testimonials" class="hover:text-teal-600 transition">Testimonials</a>
      <a href="#pricing" class="hover:text-teal-600 transition">Pricing</a>
      <a href="#contact" class="hover:text-teal-600 transition">Contact</a>
    </div>
    <button class="md:hidden" aria-label="Menu">
      <i data-lucide="menu" class="w-6 h-6 text-teal-600"></i>
    </button>
  </nav>
</header>

<main class="bg-gray-50">
  <!-- Hero -->
  <section class="relative overflow-hidden">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 text-center">
      <h1 class="text-4xl md:text-5xl font-extrabold text-gray-900 mb-4">
        Trade Rare & Exotic Fish with Confidence
      </h1>
      <p class="text-lg text-gray-600 mb-8">
        Connect with collectors worldwide, list your prized specimens, and discover hidden gems.
      </p>
      <a href="#signup" class="inline-flex items-center bg-teal-600 hover:bg-teal-700 text-white font-medium rounded-md px-6 py-3 transition">
        Get Started
        <i data-lucide="arrow-right" class="w-5 h-5 ml-2"></i>
      </a>
    </div>
    <div class="absolute inset-0">
      <div class="w-full h-80 bg-gradient-to-br from-teal-100 to-teal-200 rounded-b-3xl"></div>
    </div>
  </section>

  <!-- Features -->
  <section id="features" class="py-16 bg-white">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
      <h2 class="text-3xl font-bold text-gray-900 text-center mb-12">Features</h2>
      <div class="grid md:grid-cols-3 gap-8">
        <div class="flex flex-col items-center text-center p-6 border border-gray-200 rounded-lg hover:shadow-lg transition">
          <i data-lucide="droplet" class="w-12 h-12 text-teal-500 mb-4"></i>
          <h3 class="text-xl font-semibold text-gray-800 mb-2">Live Water Conditions</h3>
          <p class="text-gray-600">Real‑time monitoring of temperature, pH, and salinity for each listing.</p>
        </div>
        <div class="flex flex-col items-center text-center p-6 border border-gray-200 rounded-lg hover:shadow-lg transition">
          <i data-lucide="globe" class="w-12 h-12 text-teal-500 mb-4"></i>
          <h3 class="text-xl font-semibold text-gray-800 mb-2">Global Marketplace</h3>
          <p class="text-gray-600">Reach collectors from Tokyo to Toronto with seamless cross‑border trades.</p>
        </div>
        <div class="flex flex-col items-center text-center p-6 border border-gray-200 rounded-lg hover:shadow-lg transition">
          <i data-lucide="shopping-bag" class="w-12 h-12 text-teal-500 mb-4"></i>
          <h3 class="text-xl font-semibold text-gray-800 mb-2">Secure Payments</h3>
          <p class="text-gray-600">Integrated escrow and crypto options protect both buyer and seller.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- Testimonials -->
  <section id="testimonials" class="py-16 bg-gray-100">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
      <h2 class="text-3xl font-bold text-gray-900 text-center mb-12">What Collectors Say</h2>
      <div class="grid md:grid-cols-2 gap-8">
        <div class="bg-white p-6 rounded-lg shadow-md">
          <div class="flex items-center mb-4">
            <i data-lucide="star" class="w-6 h-6 text-teal-500 mr-2"></i>
            <span class="font-semibold text-gray-800">Jane D.</span>
          </div>
          <p class="text-gray-600 italic">"AquaRare helped me find a pristine Albino Angelfish that I thought was impossible to locate. The transaction was smooth and secure."</p>
        </div>
        <div class="bg-white p-6 rounded-lg shadow-md">
          <div class="flex items-center mb-4">
            <i data-lucide="star" class="w-6 h-6 text-teal-500 mr-2"></i>
            <span class="font-semibold text-gray-800">Ravi K.</span>
          </div>
          <p class="text-gray-600 italic">"The live water data gave me confidence that the fish were healthy. I’ve never been so comfortable buying online."</p>
        </div>
      </div>
    </div>
  </section>

  <!-- Call to Action -->
  <section id="signup" class="py-20 bg-teal-600 text-white text-center">
    <div class="max-w-2xl mx-auto px-4">
      <h2 class="text-3xl md:text-4xl font-bold mb-4">Ready to Dive In?</h2>
      <p class="text-lg mb-8">Join our community of elite fish enthusiasts and start trading today.</p>
      <a href="#" class="inline-flex items-center bg-white text-teal-600 font-medium rounded-md px-6 py-3 hover:bg-gray-100 transition">
        Create Your Free Account
        <i data-lucide="arrow-right" class="w-5 h-5 ml-2"></i>
      </a>
    </div>
  </section>

  <!-- Footer -->
  <footer class="bg-gray-900 text-gray-300 py-12" id="contact">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 grid md:grid-cols-3 gap-8">
      <div>
        <h3 class="text-xl font-semibold text-white mb-4">AquaRare</h3>
        <p class="text-gray-400">Connecting rare‑fish collectors worldwide.</p>
        <div class="mt-4 flex space-x-4">
          <a href="#" aria-label="Mail" class="text-gray-400 hover:text-teal-400 transition"><i data-lucide="mail" class="w-5 h-5"></i></a>
          <a href="#" aria-label="Phone" class="text-gray-400 hover:text-teal-400 transition"><i data-lucide="phone" class="w-5 h-5"></i></a>
          <a href="#" aria-label="Location" class="text-gray-400 hover:text-teal-400 transition"><i data-lucide="map-pin" class="w-5 h-5"></i></a>
        </div>
      </div>
      <div>
        <h4 class="text-lg font-medium text-white mb-4">Quick Links</h4>
        <ul class="space-y-2">
          <li><a href="#features" class="hover:text-teal-400 transition">Features</a></li>
          <li><a href="#testimonials" class="hover:text-teal-400 transition">Testimonials</a></li>
          <li><a href="#pricing" class="hover:text-teal-400 transition">Pricing</a></li>
          <li><a href="#contact" class="hover:text-teal-400 transition">Contact</a></li>
        </ul>
      </div>
      <div>
        <h4 class="text-lg font-medium text-white mb-4">Stay Updated</h4>
        <form class="flex flex-col sm:flex-row">
          <input type="email" placeholder="Enter your email" class="w-full px-3 py-2 rounded-md focus:outline-none focus:ring-2 focus:ring-teal-400 text-gray-800" required>
          <button type="submit" class="mt-2 sm:mt-0 sm:ml-2 bg-teal-500 hover:bg-teal-600 text-white font-medium px-4 py-2 rounded-md transition">
            Subscribe
          </button>
        </form>
      </div>
    </div>
    <div class="mt-8 text-center text-gray-500 text-sm">© 2026 AquaRare. All rights reserved.</div>
  </footer>
</main>