Skip to content

Commit 14d709e

Browse files
committed
Update support view
1 parent afb9794 commit 14d709e

File tree

1 file changed

+75
-1
lines changed

1 file changed

+75
-1
lines changed
Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,77 @@
1-
<x-layout>
1+
<x-layout title="Support - NativePHP">
2+
{{-- Support Grid Section --}}
3+
<section class="mx-auto mt-10 max-w-5xl px-5 md:mt-14">
4+
{{-- Header --}}
5+
<header class="mb-10 text-center">
6+
<h1 class="text-4xl font-bold md:text-5xl dark:text-white/90">Support</h1>
7+
<p class="mx-auto mt-4 max-w-2xl text-lg text-gray-600 dark:text-white/60">
8+
Get help with NativePHP through our various support channels.
9+
</p>
10+
</header>
211

12+
{{-- Support Grid --}}
13+
<div class="grid w-full grid-cols-1 gap-8 md:grid-cols-2">
14+
15+
{{-- GitHub Box --}}
16+
<a href="https://github.com/NativePHP/laravel/issues"
17+
target="_blank"
18+
rel="noopener"
19+
class="group flex w-full flex-col items-center rounded-xl bg-gray-100/80 p-8 text-center transition duration-300 hover:-translate-y-1 hover:bg-gray-200/80 hover:shadow-lg dark:bg-gray-800/50 dark:hover:bg-gray-700/50 dark:hover:shadow-gray-900/30"
20+
aria-label="Get help on GitHub">
21+
<div class="mb-5 grid size-16 place-items-center rounded-full bg-white text-black ring-1 ring-black/5 transition duration-300 group-hover:rotate-3 dark:bg-gray-900 dark:text-white dark:ring-white/10">
22+
<x-icons.github class="size-8" />
23+
</div>
24+
<h2 class="text-xl font-medium">GitHub</h2>
25+
<p class="mt-2 text-gray-600 dark:text-gray-400">Report issues or contribute to the project</p>
26+
</a>
27+
28+
{{-- Discord Box --}}
29+
<a href="{{ $discordLink }}"
30+
target="_blank"
31+
rel="noopener"
32+
class="group flex w-full flex-col items-center rounded-xl bg-gray-100/80 p-8 text-center transition duration-300 hover:-translate-y-1 hover:bg-gray-200/80 hover:shadow-lg dark:bg-gray-800/50 dark:hover:bg-gray-700/50 dark:hover:shadow-gray-900/30"
33+
aria-label="Join our Discord community">
34+
<div class="mb-5 grid size-16 place-items-center rounded-full bg-white text-[#5865F2] ring-1 ring-black/5 transition duration-300 group-hover:-rotate-3 dark:bg-gray-900 dark:ring-white/10">
35+
<x-icons.discord class="size-8" />
36+
</div>
37+
<h2 class="text-xl font-medium">Discord</h2>
38+
<p class="mt-2 text-gray-600 dark:text-gray-400">Join the community and get real-time help</p>
39+
</a>
40+
41+
{{-- Email Box --}}
42+
<a href="mailto:support@nativephp.com"
43+
class="group flex w-full flex-col items-center rounded-xl bg-gray-100/80 p-8 text-center transition duration-300 hover:-translate-y-1 hover:bg-gray-200/80 hover:shadow-lg dark:bg-gray-800/50 dark:hover:bg-gray-700/50 dark:hover:shadow-gray-900/30"
44+
aria-label="Contact us via email">
45+
<div class="mb-5 grid size-16 place-items-center rounded-full bg-white ring-1 ring-black/5 transition duration-300 group-hover:rotate-3 dark:bg-gray-900 dark:ring-white/10">
46+
<x-icons.email-document class="size-8" />
47+
</div>
48+
<h2 class="text-xl font-medium">Email</h2>
49+
<p class="mt-2 text-gray-600 dark:text-gray-400">Get in touch with our support team</p>
50+
</a>
51+
52+
{{-- Support Tickets Box --}}
53+
<a href="https://support.nativephp.com"
54+
target="_blank"
55+
rel="noopener"
56+
class="group flex w-full flex-col items-center rounded-xl bg-gray-100/80 p-8 text-center transition duration-300 hover:-translate-y-1 hover:bg-gray-200/80 hover:shadow-lg dark:bg-gray-800/50 dark:hover:bg-gray-700/50 dark:hover:shadow-gray-900/30"
57+
aria-label="Submit a support ticket">
58+
<div class="mb-5 grid size-16 place-items-center rounded-full bg-white text-violet-500 ring-1 ring-black/5 transition duration-300 group-hover:-rotate-3 dark:bg-gray-900 dark:ring-white/10">
59+
<svg class="size-8" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
60+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z" />
61+
</svg>
62+
</div>
63+
<h2 class="text-xl font-medium">Support Tickets</h2>
64+
<p class="mt-2 text-gray-600 dark:text-gray-400">Submit a detailed help request</p>
65+
</a>
66+
67+
</div>
68+
69+
{{-- Additional Support Information --}}
70+
<div class="mt-20 rounded-xl bg-gradient-to-br from-[#FFF0DC] to-[#E8EEFF] p-8 dark:from-blue-900/10 dark:to-[#4c407f]/25">
71+
<h2 class="mb-4 text-2xl font-medium">Need more help?</h2>
72+
<p class="text-lg text-gray-700 dark:text-gray-300">
73+
Check out our <a href="/docs" class="font-medium text-violet-600 hover:text-violet-700 dark:text-violet-400 dark:hover:text-violet-300">documentation</a> for comprehensive guides and tutorials to help you get the most out of NativePHP.
74+
</p>
75+
</div>
76+
</section>
377
</x-layout>

0 commit comments

Comments
 (0)