@@ -610,6 +610,64 @@ class="absolute inset-0 -z-10 h-full w-full object-cover"
610610 {{-- Pricing Section --}}
611611 <livewire:mobile-pricing />
612612
613+ {{-- Ultra Section --}}
614+ <section
615+ class =" mx-auto mt-16 max-w-4xl px-5"
616+ aria-labelledby =" ultra-tier-heading"
617+ >
618+ <div
619+ x-init ="
620+ () => {
621+ motion.inView($el, (element) => {
622+ motion.animate(
623+ $el,
624+ {
625+ opacity: [0, 1],
626+ y: [10, 0],
627+ },
628+ {
629+ duration: 0.7,
630+ ease: motion.easeOut,
631+ },
632+ )
633+ })
634+ }
635+ "
636+ class =" space-y-6 rounded-2xl bg-gray-100 p-7 dark:bg-mirage"
637+ >
638+ {{-- Plan Name --}}
639+ <h3
640+ id =" ultra-tier-heading"
641+ class =" text-2xl font-semibold"
642+ >
643+ Ultra
644+ </h3 >
645+
646+ {{-- Price --}}
647+ {{-- <div --}}
648+ {{-- class="flex items-start gap-1.5 pt-5" --}}
649+ {{-- aria-label="Price: $10,000+ per year" --}}
650+ {{-- > --}}
651+ {{-- <div class="text-5xl font-semibold">$20,000</div> --}}
652+ {{-- <div class="self-end pb-1.5 text-zinc-500">per year</div> --}}
653+ {{-- </div> --}}
654+
655+ <p class =" dark:text-gray-400" >
656+ A partnership program offering dedicated support, training,
657+ license management, early access to build services, and other
658+ enterprise-oriented services for businesses.
659+ </p >
660+ <div class =" " >
661+ <a
662+ href =" {{ route (' partners' ) } }"
663+ class =" mt-5 block w-full max-w-xs rounded-2xl bg-zinc-200 py-4 text-center text-sm font-medium transition duration-200 ease-in-out hover:bg-zinc-800 hover:text-white dark:bg-slate-700/30 dark:hover:bg-slate-700/40"
664+ >
665+ Learn More
666+ </a >
667+ </div >
668+ </div >
669+ </section >
670+
613671 {{-- Testimonials Section --}}
614672 {{-- <x-testimonials /> --}}
615673
0 commit comments