8000 Partners page (#143) · rinodrummer/nativephp.com@27c0f49 · GitHub
[go: up one dir, main page]

Skip to content

Commit 27c0f49

Browse files
authored
Partners page (NativePHP#143)
* add partners page * make pricing cards h-full
1 parent a3088ea commit 27c0f49

File tree

4 files changed

+606
-3
lines changed

4 files changed

+606
-3
lines changed

resources/views/early-adopter.blade.php

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

resources/views/livewire/mobile-pricing.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class="mt-10 grid grid-cols-[repeat(auto-fill,minmax(19rem,1fr))] items-start ga
7878
>
7979
{{-- Mini Plan --}}
8080
<div
81-
class="rounded-2xl bg-gray-100 p-7 opacity-0 dark:bg-mirage"
81+
class="h-full rounded-2xl bg-gray-100 p-7 opacity-0 dark:bg-mirage"
8282
aria-labelledby="pro-plan-heading"
8383
>
8484
{{-- Plan Name --}}
@@ -252,7 +252,7 @@ class="size-2.5 shrink-0 dark:opacity-70"
252252

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

427427
{{-- Max Plan - Most Popular --}}
428428
<div
429-
class="relative rounded-2xl bg-gray-100 p-7 opacity-0 ring-1 ring-black dark:bg-black/50 dark:ring-white/20"
429+
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"
430430
aria-labelledby="max-plan-heading"
431431
>
432432
{{-- Popular badge --}}

0 commit comments

Comments
 (0)
0