Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions resources/views/early-adopter.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,64 @@ class="absolute inset-0 -z-10 h-full w-full object-cover"
{{-- Pricing Section --}}
<livewire:mobile-pricing />

{{-- Ultra Section --}}
<section
class="mx-auto mt-16 max-w-4xl px-5"
aria-labelledby="ultra-tier-heading"
>
<div
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
y: [10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="space-y-6 rounded-2xl bg-gray-100 p-7 dark:bg-mirage"
>
{{-- Plan Name --}}
<h3
id="ultra-tier-heading"
class="text-2xl font-semibold"
>
Ultra
</h3>

{{-- Price --}}
{{-- <div --}}
{{-- class="flex items-start gap-1.5 pt-5" --}}
{{-- aria-label="Price: $10,000+ per year" --}}
{{-- > --}}
{{-- <div class="text-5xl font-semibold">$20,000</div> --}}
{{-- <div class="self-end pb-1.5 text-zinc-500">per year</div> --}}
{{-- </div> --}}

<p class="dark:text-gray-400">
A partnership program offering dedicated support, training,
license management, early access to build services, and other
enterprise-oriented services for businesses.
</p>
<div class="">
<a
href="{{ route('partners') }}"
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"
>
Learn More
</a>
</div>
</div>
</section>

{{-- Testimonials Section --}}
{{-- <x-testimonials /> --}}

Expand Down
6 changes: 3 additions & 3 deletions resources/views/livewire/mobile-pricing.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class="mt-10 grid grid-cols-[repeat(auto-fill,minmax(19rem,1fr))] items-start ga
>
{{-- Mini Plan --}}
<div
class="rounded-2xl bg-gray-100 p-7 opacity-0 dark:bg-mirage"
class="h-full rounded-2xl bg-gray-100 p-7 opacity-0 dark:bg-mirage"
aria-labelledby="pro-plan-heading"
>
{{-- Plan Name --}}
Expand Down Expand Up @@ -252,7 +252,7 @@ class="size-2.5 shrink-0 dark:opacity-70"

{{-- Pro Plan --}}
<div
class="rounded-2xl bg-gray-100 p-7 opacity-0 dark:bg-mirage"
class="h-full rounded-2xl bg-gray-100 p-7 opacity-0 dark:bg-mirage"
aria-labelledby="teams-plan-heading"
>
{{-- Plan Name --}}
Expand Down Expand Up @@ -426,7 +426,7 @@ class="size-2.5 shrink-0 dark:opacity-70"

{{-- Max Plan - Most Popular --}}
<div
class="relative rounded-2xl bg-gray-100 p-7 opacity-0 ring-1 ring-black dark:bg-black/50 dark:ring-white/20"
class="relative h-full rounded-2xl bg-gray-100 p-7 opacity-0 ring-1 ring-black dark:bg-black/50 dark:ring-white/20"
aria-labelledby="max-plan-heading"
>
{{-- Popular badge --}}
Expand Down
Loading