diff --git a/resources/views/early-adopter.blade.php b/resources/views/early-adopter.blade.php index c208f3fa..62dfb148 100644 --- a/resources/views/early-adopter.blade.php +++ b/resources/views/early-adopter.blade.php @@ -610,6 +610,64 @@ class="absolute inset-0 -z-10 h-full w-full object-cover" {{-- Pricing Section --}} + {{-- Ultra Section --}} +
+
+ {{-- Plan Name --}} +

+ Ultra +

+ + {{-- Price --}} + {{--
--}} + {{--
$20,000
--}} + {{--
per year
--}} + {{--
--}} + +

+ A partnership program offering dedicated support, training, + license management, early access to build services, and other + enterprise-oriented services for businesses. +

+
+ + Learn More + +
+
+
+ {{-- Testimonials Section --}} {{-- --}} diff --git a/resources/views/livewire/mobile-pricing.blade.php b/resources/views/livewire/mobile-pricing.blade.php index 587d5276..2a13e8c6 100644 --- a/resources/views/livewire/mobile-pricing.blade.php +++ b/resources/views/livewire/mobile-pricing.blade.php @@ -78,7 +78,7 @@ class="mt-10 grid grid-cols-[repeat(auto-fill,minmax(19rem,1fr))] items-start ga > {{-- Mini Plan --}}
{{-- Plan Name --}} @@ -252,7 +252,7 @@ class="size-2.5 shrink-0 dark:opacity-70" {{-- Pro Plan --}}
{{-- Plan Name --}} @@ -426,7 +426,7 @@ class="size-2.5 shrink-0 dark:opacity-70" {{-- Max Plan - Most Popular --}}
{{-- Popular badge --}} diff --git a/resources/views/partners.blade.php b/resources/views/partners.blade.php new file mode 100644 index 00000000..c98d2f08 --- /dev/null +++ b/resources/views/partners.blade.php @@ -0,0 +1,544 @@ + + {{-- Hero Section --}} +
+
+

+ Partner + with NativePHP +

+ +

+ We're looking for business partners to support the development + of NativePHP technology. Join us in shaping the future of PHP + mobile app development. +

+ +
+ {{-- Primary CTA - Email --}} + + + + + + Contact Us + + + {{-- Secondary CTA - Calendar --}} + + + + + + + + Schedule a Meeting + +
+
+
+ + {{-- Partnership Details Section --}} +
+
+ {{-- Card 1 --}} +
+
+ + + +
+

Dedicated Support

+

+ Get priority access to our development team with dedicated + support channels and faster response times. +

+
+ + {{-- Card 2 --}} +
+
+ + + +
+

+ Priority Roadmap Influence +

+

+ Have a direct line to our development team with priority + influence over feature development to ensure your business + needs are met. +

+
+ + {{-- Card 3 --}} +
+
+ + + +
+

Training & Onboarding

+

+ Comprehensive training and onboarding for your development + team to get up to speed quickly. +

+
+ + {{-- Card 4 --}} +
+
+ + + +
+

Ultra Licensing

+

+ Receive an Ultra license for: unlimited published + applications, unlimited developers, and team management + tools. +

+
+ + {{-- Card 5 --}} +
+
+ + + +
+

Zephpyr Early Access

+

+ Early access to Zephpyr, our service that helps you build, + secure, and distribute your NativePHP applications. +

+
+ + {{-- Card 6 --}} +
+
+ + + +
+

Strategic Partnership

+

+ Become a strategic partner in the NativePHP ecosystem with + co-marketing opportunities. +

+
+
+
+ + {{-- Ideal Partners Section --}} +
+
+

Who Should Partner With Us?

+ +
+
+
+ + + +
+
+

+ App Development Companies +

+

+ Businesses building mobile applications that want to + leverage PHP and Laravel expertise. +

+
+
+ +
+
+ + + +
+
+

Digital Agencies

+

+ Agencies looking to expand their service offerings + with native mobile app development. +

+
+
+ +
+
+ + + +
+
+

+ Freelance Developers +

+

+ PHP/Laravel freelancers who want to offer native + mobile app development to their clients. +

+
+
+
+
+
+ + {{-- Call to Action Section --}} +
+
+

Ready to Partner With Us?

+ +

+ Contact our team to discuss how a partnership with NativePHP can + benefit your business and help you deliver exceptional mobile + applications. +

+ +
+ {{-- Primary CTA - Email --}} + + + + + + Contact Us + + + {{-- Secondary CTA - Calendar --}} + + + + + + + + Schedule a Meeting + +
+
+
+
diff --git a/routes/web.php b/routes/web.php index 0471a388..c3debfe1 100644 --- a/routes/web.php +++ b/routes/web.php @@ -25,6 +25,7 @@ Route::redirect('ios', 'mobile'); Route::view('privacy-policy', 'privacy-policy'); Route::view('terms-of-service', 'terms-of-service'); +Route::view('partners', 'partners')->name('partners'); Route::redirect('/docs/{version}/{page?}', '/docs/desktop/{version}/{page?}') ->where('page', '(.*)')