Skip to content

Commit 2485388

Browse files
committedFeb 23, 2025·
Change /ios to /mobile
1 parent 3d62449 commit 2485388

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed
 
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="flex items-center justify-center bg-teal-500 p-2 text-center text-md text-white text-balance transition-all ease-out duration-500 -translate-y-[100%]"
22
x-init="$el.classList.add('translate-y-0')">
3-
<a href="/ios" onclick="fathom.trackEvent('alert_click');">
3+
<a href="/mobile" onclick="fathom.trackEvent('alert_click');">
44
📲&nbsp;&nbsp;Join the NativePHP for mobile Early Access Program &rightarrow;
55
</a>
66
</div>

‎resources/views/docs/desktop/1/getting-started/sponsoring.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ goes a long way in defraying the expenses of working for free to keep this proje
2626

2727
Together, we can continue to grow NativePHP and ensure it remains a valuable tool for the community.
2828

29-
## Early Access Program
29+
## NativePHP for mobile
3030

31-
If you're interested in NativePHP for mobile, you can get access right now via the [Early Access Program](/ios). We are
32-
already working on NativePHP for iOS and your support will help us speed up development.
31+
If you're interested in NativePHP for mobile, you can get access right now via the [Early Access Program](/mobile).
32+
NativePHP is already working on iOS and Android is in active development. Your support will help us continue.
3333

3434
## Corporate Partners
3535

‎resources/views/early-adopter.blade.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
is coming!
1313
</h2>
1414
<p class="mx-auto mt-6 max-w-xl text-pretty text-lg/8 text-gray-600 dark:text-gray-400 text-balance">
15-
Development of NativePHP for iOS has already started and you can get access right now!<br><br>
15+
Development of NativePHP for mobile has already started and you can get access
16+
and start building apps right now!<br><br>
1617
Join the <b>Early Access Program</b> by purchasing a license.
1718
</p>
1819

@@ -47,7 +48,7 @@ class="rounded-md bg-teal-500 px-8 py-4 text-2xl font-semibold text-white shadow
4748
</p>
4849
<p>
4950
With <strong>significant progress</strong> already made towards enabling
50-
<strong>NativePHP on iOS</strong>, we are excited about the possibilities that lie ahead.
51+
<strong>NativePHP for mobile</strong>, we are excited about the possibilities that lie ahead.
5152
</p>
5253
<p>
5354
However, to make this vision a reality for both iOS and Android, we need your support.

‎routes/web.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
Route::redirect('/sponsor', '/docs/1/getting-started/sponsoring');
2020

2121
Route::view('/', 'welcome')->name('welcome');
22-
Route::view('ios', 'early-adopter')->name('early-adopter');
22+
Route::view('mobile', 'early-adopter')->name('early-adopter');
23+
Route::redirect('ios', 'mobile');
2324

2425
Route::redirect('/docs/{version}/{page?}', '/docs/desktop/{version}/{page?}')
2526
->where('page', '(.*)')

0 commit comments

Comments
 (0)
Please sign in to comment.