Skip to content

Commit d465d82

Browse files
✨ Update heading styles for consistency and add mini logo component
1 parent 2c6401c commit d465d82

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

resources/views/components/home/explainer.blade.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -430,9 +430,7 @@ class="flex flex-col items-center gap-1 text-center text-pretty 2xs:items-start
430430
<p class="text-lg text-gray-600 lg:text-xl dark:text-zinc-400">
431431
Step by step
432432
</p>
433-
<h2
434-
class="text-xl font-bold text-gray-800 lg:text-2xl dark:text-white"
435-
>
433+
<h2 class="text-2xl font-bold text-gray-800 dark:text-white">
436434
How do I get it?
437435
</h2>
438436
</div>
@@ -528,9 +526,7 @@ class="flex flex-col items-center gap-1 text-center text-pretty 2xs:items-start
528526
<p class="text-lg text-[#9FA382] lg:text-xl dark:text-zinc-400">
529527
Your next app starts here
530528
</p>
531-
<h2
532-
class="text-xl font-bold text-gray-800 lg:text-2xl dark:text-white"
533-
>
529+
<h2 class="text-2xl font-bold text-gray-800 dark:text-white">
534530
What can I build?
535531
</h2>
536532
</div>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<svg
2+
{{ $attributes }}
3+
xmlns="http://www.w3.org/2000/svg"
4+
viewBox="0 0 25 25"
5+
fill="none"
6+
>
7+
<path
8+
d="M7.375 24.6H0V0.300003H7.375V24.6Z"
9+
class="text-[#505b93] dark:text-[#8696ed]"
10+
fill="currentColor"
11+
/>
12+
<path
13+
d="M24.175 24.6H16.8V0.300003H24.175V24.6Z"
14+
class="text-[#00aaa6] dark:text-[#3edad7]"
15+
fill="currentColor"
16+
/>
17+
<path
18+
d="M24.175 24.6H7.375V0.300003L24.175 24.6Z"
19+
class="text-[#272d48]"
20+
fill="currentColor"
21+
/>
22+
</svg>

resources/views/components/navigation-bar.blade.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ class="mx-auto flex w-full max-w-5xl items-center justify-between gap-5 rounded-
2222
<a
2323
href="/"
2424
aria-label="NativePHP Homepage"
25-
class="hidden min-[500px]:block"
2625
x-on:contextmenu.prevent="window.location.href = @js(route('brand'))"
2726
>
28-
<x-logo class="h-4 min-[400px]:h-5 sm:h-6" />
27+
<x-logo
28+
class="hidden h-4 min-[400px]:h-5 min-[500px]:block sm:h-6"
29+
/>
30+
<x-mini-logo class="block h-6 min-[500px]:hidden" />
2931
<span class="sr-only">NativePHP</span>
3032
</a>
3133

0 commit comments

Comments
 (0)