added not subscribed page, added premium inbox

This commit is contained in:
Gitea
2025-05-06 07:21:39 +05:30
parent 86e452deac
commit 671cb6212d
12 changed files with 603 additions and 22 deletions

View File

@@ -0,0 +1,23 @@
<span>
<div class="flex-1 overflow-hidden rounded-xl border border-neutral-200 dark:border-neutral-700 dark:bg-white/[0.03] sm:px-8 sm:py-8 lg:p-12">
<div class="text-center p-2">
<!-- Message -->
<div class="w-full flex justify-center mb-6">
{{-- <img class="w-20" src="{{ asset('images/logo.webp') }}" alt="logo" />--}}
<flux:icon.lock-keyhole class="size-20" />
</div>
<h2 class="text-xl sm:text-2xl font-semibold text-gray-800 dark:text-white">
You don't have permission to access this page
</h2>
<p class="text-sm sm:text-base py-2 text-gray-600 dark:text-gray-300">
To continue, you need to subscribe to a plan that grants access.
</p>
<!-- Call to Action Button -->
<a href="{{ route('dashboard') }}"
class="inline-block mt-6 mb-2 px-6 py-3 inbox-btn text-white font-medium text-sm sm:text-base rounded-lg shadow-md transition-colors duration-200">
Subscribe now
</a>
</div>
</div>
</span>