Last chance — Get a 60% Discount. Discount already applied at checkout.

pricing pages1

1
<!-- Navigation bar section -->
<div class="justify-center w-full mx-auto bg-base-50">
  <div
    x-data="{ open: false }"
    class="flex flex-col w-full mx-auto md:px-12 md:items-center md:justify-between md:flex-row px-8 py-2 lg:px-24 max-w-screen-xl relative"
  >
    <div class="flex flex-row items-center justify-between text-black">
      <a
        class="text-md leading-normal hover:text-accent-500 font-medium flex items-center gap-2 text-base-900"
        href="#_"
      >
        <img
          class="h-7 2xl:h-12"
          src="/images/oxbow/blueLineLogo.png"
          alt="#_"
        />
        Oxbow UI
      </a>
      <button
        class="flex items-center justify-center transition-all duration-200 focus:ring-2 transition-shadow focus:outline-none text-base-500 bg-white hover:text-accent-500 ring-1 ring-base-200 focus:ring-accent-500 size-9 p-2 text-sm rounded-md md:hidden"
        @click="open = !open"
      >
        <svg
          xmlns="http://www.w3.org/2000/svg"
          viewBox="0 0 24 24"
          fill="none"
          stroke="currentColor"
          stroke-width="2"
          stroke-linecap="round"
          stroke-linejoin="round"
          class="icon icon-tabler icons-tabler-outline icon-tabler-layout-grid size-3"
          x-data="{ open: false }"
        >
          <!-- Paths for burger icon -->
          <path
            x-show="!open"
            stroke-linecap="round"
            stroke-linejoin="round"
            stroke-width="2"
            d="M4 6h16M4 12h16M4 18h16"
          ></path>
          <!-- Paths for close icon (toggle icon) -->
          <path
            x-show="open"
            stroke-linecap="round"
            stroke-linejoin="round"
            stroke-width="2"
            d="M6 18L18 6M6 6l12 12"
          ></path>
        </svg>
      </button>
    </div>
    <nav
      :class="{'flex': open, 'hidden': !open}"
      class="flex-col items-center flex-grow hidden gap-3 p-4 px-5 md:px-0 md:pb-0 md:flex md:justify-center md:flex-row lg:p-0"
    >
      <a
        class="text-md leading-normal hover:text-accent-500 font-medium text-base-500 md:ml-auto"
        href="#_"
      >
        Features
      </a>
      <a
        class="text-md leading-normal hover:text-accent-500 font-medium text-base-500"
        href="#_"
      >
        About
      </a>
      <button
        class="flex items-center justify-center transition-all duration-200 focus:ring-2 focus:outline-none text-white bg-accent-600 hover:bg-accent-700 focus:ring-accent-500/50 h-9 px-4 py-2 text-sm font-medium rounded-md"
      >
        Button
      </button>
    </nav>
  </div>
</div>
<!-- Pricing section with available plans and details -->
<section x-data="{duration: 'monthly'}">
  <div class="px-8 py-24 mx-auto md:px-12 lg:px-24 max-w-screen-xl relative">
    <div class="max-w-xl text-center mx-auto">
      <p class="text-sm leading-normal font-bold uppercase text-accent-600">
        Tagline
      </p>
      <h2
        class="text-xl leading-tight tracking-tight sm:text-2xl md:text-3xl lg:text-4xl mt-4 font-semibold text-base-900 lg:text-balance"
      >
        Equip your business with world class software
      </h2>
      <p
        class="text-base leading-normal mt-4 text-base-500 font-medium lg:text-balance"
      >
        Choose a plan that works the best for you and your team. Start small,
        upgrade when you need to.
      </p>
      <div
        aria-labelledby="pricing-toggle"
        class="w-full relative mt-8 ring-1 ring-base-200 ring-offset-2 bg-white overflow-hidden justify-center gap-4 mx-auto lg:mx-0 inline-flex p-1 rounded-md max-w-52 shadow z-0"
      >
        <!-- Monthly Pricing Button: Sets 'duration' to 'monthly' when clicked -->
        <!-- Sliding background -->
        <div
          class="absolute inset-0 bg-base-50 rounded-md transition-transform duration-200 ease-in-out"
          :class="duration === 'monthly' ? 'w-1/2 translate-x-0' : 'w-1/2 translate-x-full'"
        ></div>
        <!-- Monthly Pricing Button -->
        <button
          id="monthly-pricing-button"
          class="relative flex items-center justify-center w-full px-2 h-6 text-xs font-medium focus:outline-none transition-colors duration-300 z-10"
          :class="duration === 'monthly' ? 'text-accent-600' : 'text-base-500 hover:text-accent-500'"
          @click="duration = 'monthly'"
          type="button"
          :aria-pressed="duration === 'monthly'"
        >
          Monthly
        </button>
        <!-- Annual Pricing Button -->
        <button
          id="annual-pricing-button"
          class="relative flex items-center justify-center w-full px-2 h-6 text-xs font-medium focus:outline-none transition-colors duration-300 z-10"
          :class="duration === 'annual' ? 'text-accent-600' : 'text-base-500 hover:text-accent-500'"
          @click="duration = 'annual'"
          type="button"
          :aria-pressed="duration === 'annual'"
        >
          Annual
        </button>
      </div>
    </div>
    <div
      class="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 mt-12 mx-auto"
    >
      <!-- Tier one -->
      <div
        class="flex flex-col h-full p-1 lg:py-1 rounded-3xl bg-base-50 shadow"
      >
        <div>
          <div
            class="flex flex-col gap-4 p-8 bg-white rounded-[1.3rem] h-full shadow"
          >
            <div class="flex items-start justify-between w-full">
              <div>
                <h3
                  class="text-lg leading-normal sm:text-xl md:text-2xl font-medium text-base-900"
                >
                  Core
                </h3>
                <p class="text-md leading-normal font-medium text-base-500">
                  For individuals
                </p>
              </div>
            </div>
            <p class="text-md leading-normal font-medium text-base-500">
              This subscription tier caters to individuals and hobbyists seeking
              features.
            </p>
          </div>
        </div>
        <div class="p-8">
          <p
            class="font-semibold flex lg:text-3xl items-baseline text-2xl tracking-tighter text-base-900"
          >
            <span
              data-monthly="$29.00"
              data-annual="$19.00"
              x-text="$el.dataset[duration]"
            ></span>
            <span
              class="text-sm font-normal font-sans tracking-normal text-base-500"
            >
              <span x-show="duration === 'monthly'">/month</span>
              <span x-show="duration === 'annual'" style="display: none"
                >/annually</span
              >
            </span>
          </p>
          <div class="w-full mt-4">
            <button
              class="flex items-center justify-center transition-all duration-200 focus:ring-2 focus:outline-none text-base-500 bg-white hover:text-accent-500 ring-1 ring-base-200 focus:ring-accent-500 h-9 px-4 py-2 text-sm font-medium rounded-md w-full"
            >
              Get Started
            </button>
          </div>
        </div>
      </div>
      <!-- Tier two -->
      <div
        class="flex flex-col h-full p-1 lg:py-1 rounded-3xl bg-accent-700 shadow"
      >
        <div>
          <div
            class="flex flex-col gap-4 p-8 bg-white/10 rounded-[1.3rem] h-full shadow"
          >
            <div class="flex items-start justify-between w-full">
              <div>
                <h3
                  class="text-lg leading-normal sm:text-xl md:text-2xl font-medium text-white"
                >
                  Momentum
                </h3>
                <p class="text-md leading-normal font-medium text-base-200">
                  For startups
                </p>
              </div>
              <span
                class="inline-flex items-center font-medium relative text-base-700 bg-base-50 px-2.5 py-1 text-xs rounded-md"
              >
                Popular
              </span>
            </div>
            <p class="text-md leading-normal font-medium text-base-200">
              Tailored for expanding businesses, this tier offers advanced tools
              and analytics.
            </p>
          </div>
        </div>
        <div class="p-8">
          <p
            class="font-semibold flex lg:text-3xl items-baseline text-2xl tracking-tighter text-white"
          >
            <span
              data-monthly="$49.00"
              data-annual="$39.00"
              x-text="$el.dataset[duration]"
            ></span>
            <span
              class="text-sm font-normal font-sans tracking-normal text-accent-100"
            >
              <span x-show="duration === 'monthly'">/month</span>
              <span x-show="duration === 'annual'" style="display: none"
                >/annually</span
              >
            </span>
          </p>
          <div class="w-full mt-4">
            <button
              class="flex items-center justify-center transition-all duration-200 focus:ring-2 focus:outline-none text-base-500 bg-white hover:text-accent-500 ring-1 ring-base-200 focus:ring-accent-500 h-9 px-4 py-2 text-sm font-medium rounded-md w-full"
            >
              Get Started
            </button>
          </div>
        </div>
      </div>
      <!-- Tier three -->
      <div
        class="flex flex-col h-full p-1 lg:py-1 rounded-3xl bg-base-50 shadow"
      >
        <div>
          <div
            class="flex flex-col gap-4 p-8 bg-white rounded-[1.3rem] h-full shadow"
          >
            <div class="flex items-start justify-between w-full">
              <div>
                <h3
                  class="text-lg leading-normal sm:text-xl md:text-2xl font-medium text-base-900"
                >
                  Growth
                </h3>
                <p class="text-md leading-normal font-medium text-base-500">
                  For corporates
                </p>
              </div>
            </div>
            <p class="text-md leading-normal font-medium text-base-500">
              Designed for established businesses, providing comprehensive
              tools.
            </p>
          </div>
        </div>
        <div class="p-8">
          <p
            class="font-semibold flex lg:text-3xl items-baseline text-2xl tracking-tighter text-base-900"
          >
            <span
              data-monthly="$99.00"
              data-annual="$79.00"
              x-text="$el.dataset[duration]"
            ></span>
            <span
              class="text-sm font-normal font-sans tracking-normal text-base-500"
            >
              <span x-show="duration === 'monthly'">/month</span>
              <span x-show="duration === 'annual'" style="display: none"
                >/annually</span
              >
            </span>
          </p>
          <div class="w-full mt-4">
            <button
              class="flex items-center justify-center transition-all duration-200 focus:ring-2 focus:outline-none text-base-500 bg-white hover:text-accent-500 ring-1 ring-base-200 focus:ring-accent-500 h-9 px-4 py-2 text-sm font-medium rounded-md w-full"
            >
              Get Started
            </button>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>
<!-- Frequently Asked Questions section -->
<section>
  <div class="px-8 py-24 mx-auto md:px-12 lg:px-24 max-w-7xl relative">
    <div>
      <p class="text-sm leading-normal font-bold uppercase text-accent-600">
        Tagline
      </p>
      <h2
        class="text-xl leading-tight tracking-tight sm:text-2xl md:text-3xl lg:text-4xl mt-4 font-semibold text-base-900 lg:text-balance"
      >
        Frequently Asked Questions
      </h2>
      <p class="text-base leading-normal mt-4 text-base-500 font-medium">
        Everything you need to know about our platform.
      </p>
    </div>
    <ul role="list" class="space-y-8 divide-y divide-base-900/10 mt-12">
      <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
        <div class="lg:col-span-5">
          <h3
            class="text-base leading-normal sm:text-lg md:text-xl text-base-900 font-medium"
          >
            How does end-to-end encryption work?
          </h3>
        </div>
        <div class="mt-4 lg:col-span-7 lg:mt-0">
          <p class="text-base leading-normal text-base-500 font-medium">
            End-to-end encryption ensures that only the sender and recipient can
            access the content of a message.
          </p>
        </div>
      </div>
      <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
        <div class="lg:col-span-5">
          <h3
            class="text-base leading-normal sm:text-lg md:text-xl text-base-900 font-medium"
          >
            Can I access my encrypted data if I forget my encryption key?
          </h3>
        </div>
        <div class="mt-4 lg:col-span-7 lg:mt-0">
          <p class="text-base leading-normal text-base-500 font-medium">
            No, forgetting or losing your encryption key means that your
            encrypted data cannot be accessed.
          </p>
        </div>
      </div>
      <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
        <div class="lg:col-span-5">
          <h3
            class="text-base leading-normal sm:text-lg md:text-xl text-base-900 font-medium"
          >
            Are there any limitations to the self-destructing messages feature?
          </h3>
        </div>
        <div class="mt-4 lg:col-span-7 lg:mt-0">
          <p class="text-base leading-normal text-base-500 font-medium">
            Self-destructing messages are designed to automatically delete
            themselves after a specific period or upon being read by the
            recipient.
          </p>
        </div>
      </div>
      <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
        <div class="lg:col-span-5">
          <h3
            class="text-base leading-normal sm:text-lg md:text-xl text-base-900 font-medium"
          >
            What happens if I enable two-factor authentication and lose my
            device?
          </h3>
        </div>
        <div class="mt-4 lg:col-span-7 lg:mt-0">
          <p class="text-base leading-normal text-base-500 font-medium">
            Losing your device doesn&#39;t automatically compromise your
            account&#39;s security.
          </p>
        </div>
      </div>
      <div class="pt-8 lg:grid lg:grid-cols-12 lg:gap-12">
        <div class="lg:col-span-5">
          <h3
            class="text-base leading-normal sm:text-lg md:text-xl text-base-900 font-medium"
          >
            Is my personal information shared or sold to third parties?
          </h3>
        </div>
        <div class="mt-4 lg:col-span-7 lg:mt-0">
          <p class="text-base leading-normal text-base-500 font-medium">
            No, we strictly adhere to a privacy-centric approach. Your personal
            information is never shared, sold, or monetized. We prioritize your
            privacy and ensure that your data remains confidential and only
            accessible to you.
          </p>
        </div>
      </div>
      <!-- More questions... -->
    </ul>
  </div>
</section>