-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathearly-adopter.blade.php
More file actions
921 lines (894 loc) · 37 KB
/
Copy pathearly-adopter.blade.php
File metadata and controls
921 lines (894 loc) · 37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
<x-layout title="NativePHP for iOS and Android">
{{-- Hero Section --}}
<section
class="mt-10 px-5 md:mt-14"
aria-labelledby="hero-heading"
>
<header class="relative z-10 grid place-items-center text-center">
{{-- Primary Heading --}}
<h1
id="hero-heading"
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
y: [-10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="text-3xl font-extrabold sm:text-4xl"
>
NativePHP for mobile
</h1>
{{-- Introduction Description --}}
<h2
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
y: [10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="mx-auto max-w-xl pt-4 text-base/relaxed text-gray-600 sm:text-lg/relaxed dark:text-gray-400"
>
This changes everything! Now you can use the tools you already
know to build rich, native,
<em>mobile</em>
apps... right now!
</h2>
</header>
{{-- Platform Cards --}}
<div
class="flex flex-wrap items-center justify-center gap-6 pt-10"
aria-label="Available platforms"
>
{{-- iOS Card --}}
<div
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="relative"
aria-labelledby="ios-heading"
>
<div
class="relative isolate z-10 flex w-full max-w-xs flex-col items-center overflow-hidden rounded-2xl bg-[#EBECF6] p-8 text-center ring-4 ring-inset ring-white/60 dark:bg-black/50 dark:ring-white/5"
>
{{-- Subtitle --}}
<p class="text-sm text-gray-500">Available now for</p>
{{-- Title --}}
<h3
id="ios-heading"
class="pt-1 text-4xl font-semibold"
>
iOS
</h3>
{{-- Text --}}
<p class="pt-2.5 text-sm dark:text-gray-400">
Join the Early Access Program and start developing iOS
apps today.
</p>
{{-- Mockup --}}
<div class="pt-10">
<img
src="{{ Vite::asset('resources/images/mobile/ios_phone_mockup.webp') }}"
alt="iOS phone mockup displaying a NativePHP application"
class="-mb-[11rem] w-40 dark:mix-blend-hard-light"
/>
</div>
{{-- White blurred circle - Decorative --}}
<div
class="absolute -top-5 right-1/2 -z-10 h-40 w-14 translate-x-1/2 rounded-full bg-white blur-2xl dark:bg-[#3a3f67]"
aria-hidden="true"
></div>
{{-- Blue blurred circle - Decorative --}}
<div
class="absolute bottom-0 right-1/2 -z-10 h-52 w-72 translate-x-1/2 rounded-full bg-[#9CA8D9]/40 blur-2xl dark:bg-blue-800/40"
aria-hidden="true"
></div>
</div>
{{-- Blurred circle - Decorative --}}
<div
class="absolute -top-1/2 left-0 -z-20 h-60 w-full rounded-full bg-[#DDE2F3] blur-[100px] dark:bg-[#444892]/50"
aria-hidden="true"
></div>
</div>
{{-- Android Card --}}
<div
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
x: [10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="relative"
aria-labelledby="android-heading"
>
<div
class="relative isolate z-10 flex w-full max-w-xs flex-col items-center overflow-hidden rounded-2xl bg-[#F6F1EB] p-8 text-center ring-4 ring-inset ring-white/60 dark:bg-black/50 dark:ring-white/5"
>
{{-- Subtitle --}}
<p class="text-sm text-gray-500">Available now for</p>
{{-- Title --}}
<h3
id="android-heading"
class="pt-1 text-4xl font-semibold"
>
Android
</h3>
{{-- Text --}}
<p class="pt-2.5 text-sm dark:text-gray-400">
Sign up and build apps for Android today!
</p>
{{-- Mockup --}}
<div class="pt-10">
<img
src="{{ Vite::asset('resources/images/mobile/android_phone_mockup.webp') }}"
alt="Android phone mockup displaying a NativePHP application"
class="-mb-[10.7rem] w-40"
/>
</div>
{{-- White blurred circle - Decorative --}}
<div
class="absolute -top-5 right-1/2 -z-10 h-40 w-14 translate-x-1/2 rounded-full bg-white blur-2xl dark:bg-[#3a3f67]"
aria-hidden="true"
></div>
{{-- Center blurred circle - Decorative --}}
<div
class="absolute bottom-0 right-1/2 -z-10 h-52 w-72 translate-x-1/2 rounded-full bg-[#E0D7CE] blur-2xl dark:bg-slate-700/50"
aria-hidden="true"
></div>
</div>
{{-- Blurred circle - Decorative --}}
<div
class="absolute -top-1/2 left-0 -z-20 h-60 w-full rounded-full bg-[#FBF2E7] blur-[100px] dark:bg-slate-500/40"
aria-hidden="true"
></div>
</div>
</div>
</section>
{{-- Quick Instructions Section --}}
<section
class="mt-20 px-5"
aria-labelledby="instructions-heading"
>
<header class="relative z-10 grid place-items-center text-center">
{{-- Section Heading --}}
<h2
id="instructions-heading"
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="text-3xl font-semibold opacity-0"
>
Quick instructions
</h2>
{{-- Section Description --}}
<p
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
x: [10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="mx-auto max-w-xl pt-2 text-base/relaxed text-gray-600 opacity-0 dark:text-gray-400"
>
Get your app up and running in minutes.
</p>
</header>
{{-- Installation Steps --}}
<div
x-init="
() => {
motion.inView($el, (element) => {
motion.animate([
{{-- Slide 1 --}}
[
$refs.slide1.querySelector('h3'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
},
],
[
$refs.slide1.querySelector('p'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
at: '-0.5',
},
],
[
$refs.slide1.querySelector('[x-ref=box]'),
{
opacity: [0, 1],
scale: [0, 1],
},
{
duration: 0.8,
ease: motion.backOut,
at: '-0.8',
},
],
[
$refs.slide1.querySelector('[x-ref=checkmark]'),
{
opacity: [0, 1],
scale: [0, 1],
},
{
duration: 0.5,
ease: motion.backOut,
at: '-0.5',
},
],
[
$refs.slide1.querySelector('[x-ref=success_title]'),
{
opacity: [0, 1],
y: [-10, 0],
},
{
duration: 0.5,
ease: motion.circOut,
at: '-0.5',
},
],
[
$refs.slide1.querySelector('[x-ref=success_subtitle]'),
{
opacity: [0, 0.5],
y: [10, 0],
},
{
duration: 0.5,
ease: motion.circOut,
at: '-0.5',
},
],
{{-- Slide 2 --}}
[
$refs.slide2.querySelector('h3'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
at: 0.2,
},
],
[
$refs.slide2.querySelector('p'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
at: '-0.5',
},
],
[
$refs.slide2.querySelector('[x-ref=box]'),
{
opacity: [0, 1],
scale: [0, 1],
},
{
duration: 0.8,
ease: motion.backOut,
at: '-0.8',
},
],
[
$refs.slide2.querySelector('[x-ref=terminal]'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
at: '-0.7',
},
],
[
$refs.bashline1,
{ clipPath: ['inset(0 100% 0 0)', 'inset(0 0% 0 0)'] },
{
duration: 1.5,
ease: 'steps(16)',
at: '-0.3',
},
],
[
$refs.bashline2,
{ clipPath: ['inset(0 100% 0 0)', 'inset(0 0% 0 0)'] },
{
duration: 1.8,
ease: 'steps(31)',
at: '-0.8',
},
],
{{-- Slide 3 --}}
[
$refs.slide3.querySelector('h3'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
at: 0.35,
},
],
[
$refs.slide3.querySelector('p'),
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.circOut,
at: '-0.5',
},
],
[
$refs.slide3.querySelector('[x-ref=box]'),
{
opacity: [0, 1],
scale: [0, 1],
},
{
duration: 0.8,
ease: motion.backOut,
at: '-0.8',
},
],
])
})
}
"
class="flex flex-wrap items-center justify-center gap-x-10 gap-y-5 pt-7"
aria-label="Installation steps"
>
{{-- Step 1 --}}
<div
x-ref="slide1"
aria-labelledby="step1-heading"
>
{{-- Step number --}}
<h3
id="step1-heading"
class="font-medium opacity-0"
>
Step 1
</h3>
{{-- Step description --}}
<p
class="pt-0.5 text-sm text-gray-500 opacity-0 dark:text-gray-400"
>
Buy a license.
</p>
{{-- Box --}}
<div
x-ref="box"
class="mt-3 grid h-52 w-72 place-items-center rounded-xl bg-[#f4f1ee] p-5 opacity-0 dark:bg-mirage"
aria-label="Purchase confirmation visualization"
>
<div class="flex flex-col items-center gap-5 text-center">
{{-- Checkmark --}}
<div
x-ref="checkmark"
class="relative grid size-7 place-items-center rounded-full bg-emerald-400 text-black opacity-0 ring-[9px] ring-emerald-400/20"
aria-hidden="true"
>
<x-icons.checkmark class="size-6" />
<div
class="absolute right-1/2 top-1/2 hidden size-24 -translate-y-1/2 translate-x-1/2 rounded-full bg-emerald-400/20 blur-2xl dark:block"
aria-hidden="true"
></div>
</div>
{{-- Success message --}}
<div class="space-y-1 dark:text-white">
<div
x-ref="success_title"
class="text-sm font-medium opacity-0"
>
Payment successful!
</div>
<div
x-ref="success_subtitle"
class="text-xs opacity-0"
>
You've purchased a license.
</div>
</div>
</div>
</div>
</div>
{{-- Step 2 --}}
<div
x-ref="slide2"
aria-labelledby="step2-heading"
>
{{-- Step number --}}
<h3
id="step2-heading"
class="font-medium opacity-0"
>
Step 2
</h3>
{{-- Step description --}}
<p
class="pt-0.5 text-sm text-gray-500 opacity-0 dark:text-gray-400"
>
Install the private Composer package.
</p>
{{-- Box --}}
<div
x-ref="box"
class="relative isolate z-0 mt-3 grid h-52 w-72 place-items-center overflow-hidden rounded-xl opacity-0"
aria-label="Terminal command example"
>
{{-- Terminal --}}
<div
x-ref="terminal"
class="-mb-12 -mr-12 h-52 w-72 overflow-hidden rounded-xl bg-white opacity-0 dark:bg-gray-900"
>
<div
class="flex items-center gap-1 bg-gray-100 px-3 py-3.5 dark:bg-gray-800"
>
<div
class="size-1.5 rounded-full bg-rose-400"
aria-hidden="true"
></div>
<div
class="size-1.5 rounded-full bg-yellow-400"
aria-hidden="true"
></div>
<div
class="size-1.5 rounded-full bg-green-400"
aria-hidden="true"
></div>
</div>
<div class="space-y-1 p-4 text-xs">
<div
x-ref="bashline1"
class="text-gray-500"
aria-label="Terminal directory path"
>
~/native-php-app
</div>
<div
x-ref="bashline2"
class="font-medium"
aria-label="Composer install command"
>
composer require nativephp/mobile
</div>
</div>
</div>
{{-- Background image - Decorative --}}
<img
src="{{ Vite::asset('resources/images/mobile/macos_wallpaper.webp') }}"
alt=""
class="absolute inset-0 -z-10 h-full w-full object-cover"
loading="lazy"
aria-hidden="true"
/>
</div>
</div>
{{-- Step 3 --}}
<div
x-ref="slide3"
aria-labelledby="step3-heading"
>
{{-- Step number --}}
<h3
id="step3-heading"
class="font-medium opacity-0"
>
Step 3
</h3>
{{-- Step description --}}
<p
class="pt-0.5 text-sm text-gray-500 opacity-0 dark:text-gray-400"
>
Build your app.
</p>
{{-- Box --}}
<div
x-ref="box"
class="relative isolate z-0 mt-3 grid h-52 w-72 place-items-center overflow-hidden rounded-xl opacity-0"
aria-label="Developer using an app built with NativePHP for mobile"
>
{{-- Background image --}}
<img
src="{{ Vite::asset('resources/images/mobile/developer_holding_phone.webp') }}"
alt="Developer holding a phone with NativePHP application"
class="absolute inset-0 -z-10 h-full w-full object-cover"
loading="lazy"
/>
</div>
</div>
</div>
</section>
{{-- 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 /> --}}
{{-- FAQ Section --}}
<section
class="mx-auto mt-24 max-w-5xl px-5"
aria-labelledby="faq-heading"
>
{{-- Section Heading --}}
<h2
id="faq-heading"
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
$el,
{
opacity: [0, 1],
y: [-10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
})
}
"
class="text-center text-3xl font-semibold opacity-0"
>
Frequently Asked Questions
</h2>
{{-- FAQ List --}}
<div
x-init="
() => {
motion.inView($el, (element) => {
motion.animate(
Array.from($el.children),
{
x: [-50, 0],
opacity: [0, 1],
},
{
duration: 0.7,
ease: motion.circOut,
delay: motion.stagger(0.1),
},
)
})
}
"
class="mx-auto flex w-full max-w-2xl flex-col items-center gap-4 pt-10"
aria-labelledby="faq-heading"
>
<x-faq-card question="Why isn't this open source and free?">
<p>
We want to build an amazing tool and make it sustainable. A
lot of NativePHP is already fully open source. With
NativePHP for mobile, we need to take a different path to
ensure that the entire project continues to get the support
it deserves.
</p>
</x-faq-card>
<x-faq-card
question="Will there ever be a free & open source version?"
>
<p>
Yes! Once we've hit sustainability and can afford to
continue investing in this project indirectly, then a
version of it will be fully open source and made available
for free.
</p>
</x-faq-card>
<x-faq-card
question="Can I create both iOS and Android apps with one license?"
>
<p>
Yes, a single license will let you build apps for both iOS
and Android.
</p>
</x-faq-card>
<x-faq-card question="When will Android support be ready?">
<p>It's READY! Sign up and build apps for Android today!</p>
</x-faq-card>
<x-faq-card question="When will the EAP end?">
<p>The EAP will end May 31, 2025.</p>
</x-faq-card>
<x-faq-card question="Which price will my license renew at?">
<p>
Your license will renew at the price you originally paid, as
long as you renew before it expires. If you renew after it
expires, then you will have to pay the prices available at
that time.
</p>
</x-faq-card>
<x-faq-card
question="Can I still build apps if I choose not to renew my license?"
>
<p>
Yes. Renewing your license entitles you to receive the
latest package updates but isn't required to build and
release apps.
</p>
</x-faq-card>
<x-faq-card question="Can I upgrade or downgrade my license later?">
<p>That's not currently possible.</p>
</x-faq-card>
<x-faq-card question="Will my apps built with NativePHP be secure?">
<p>
Definitely. NativePHP for mobile apps are just like other
iOS and Android apps - they're as secure as you make them.
</p>
</x-faq-card>
{{-- <x-faq-card question="Can I try NativePHP before purchasing?"> --}}
{{-- <p> --}}
{{-- </p> --}}
{{-- </x-faq-card> --}}
<x-faq-card question="Can I use NativePHP for commercial projects?">
<p>
Absolutely! You can use NativePHP for any kind of project,
including commercial ones. We can't wait to see what you
build!
</p>
</x-faq-card>
<x-faq-card question="Can I get an invoice?">
<p>
If you purchased after May 6, 2025, you should get an
invoice with your receipt via email.
</p>
<p class="mt-4">
For purchases made before this, you simply need to
<a
href="https://zenvoice.io/p/67a61665e7a3400c73fb75af"
onclick="event.stopPropagation()"
class="inline-block underline hover:text-violet-400"
>
follow the instructions here
</a>
to generate your invoice.
</p>
</x-faq-card>
<x-faq-card question="How can I manage my subscription?">
<p>
You can manage your subscription via the
<a
href="https://billing.stripe.com/p/login/4gwaGV5VK0uU44E288"
onclick="event.stopPropagation()"
class="inline-block underline hover:text-violet-400"
aria-label="Stripe billing portal"
target="_blank"
>
Stripe billing portal.
</a>
</p>
</x-faq-card>
</div>
</section>
{{-- Why Join Program Section --}}
<section
class="mx-auto mt-20 max-w-5xl px-5"
aria-labelledby="join-program-heading"
>
<article
x-init="
() => {
motion.inView(
$el,
(element) => {
motion.animate(
$el,
{
opacity: [0, 1],
x: [-10, 0],
},
{
duration: 0.7,
ease: motion.easeOut,
},
)
},
{
amount: 0.2,
},
)
}
"
class="prose mx-auto max-w-2xl opacity-0 dark:text-gray-400"
>
<h2
id="join-program-heading"
class="dark:text-white"
>
Why Join the Early Access Program?
</h2>
<p>
From the beginning, NativePHP has been focused on Windows, Mac,
and Linux. Until now!
</p>
<p>
We believe that breaking the mobile frontier is what makes this
project truly compelling... and truly cross-platform.
</p>
<p>
With
<strong class="dark:text-white">NativePHP for mobile</strong>
, we are excited about the possibilities that lie ahead.
</p>
<p>
However, to make this vision a reality for both iOS and Android,
we need your support.
</p>
<p>
As an EAP member, you will be supporting the continued
development of all of NativePHP, but especially of NativePHP for
mobile.
</p>
<p>
You'll have the opportunity to influence the direction of the
project and provide critical feedback right from an early stage.
</p>
<p>
You'll get exclusive access to all the latest features first and
special perks for the life of the NativePHP project... a project
we plan to be working on for a long time to come!
</p>
<p>
Please join us on this exciting journey to expand NativePHP onto
mobile platforms.
</p>
<p class="italic">We can't wait to see what you build!</p>
<p>
<span class="font-bold italic dark:text-white">
Simon, Shane, & Marcel
</span>
<br />
<span class="text-indigo-400">Creators of NativePHP</span>
</p>
</article>
</section>
</x-layout>