+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @if (User.Identity.IsAuthenticated)
+ {
+
+ @{
+ var userService = Context.RequestServices.GetService
();
+ var currentUserId = User?.FindFirst(System.Security.Claims.ClaimTypes.NameIdentifier)?.Value;
+ var currentUser = currentUserId != null ? await userService.GetUserAsync(currentUserId) : null;
+ var isPremium = currentUser?.IsPremium == true;
+ }
+
+ @if (isPremium)
+ {
+
+
+
+
@Localizer["PNGJPGUp2MB"]
+
+
+
+
+
+
+
+ }
+ else
+ {
+
+
+
+
+ Logo Personalizado - Premium
+
+
Adicione sua marca aos QR Codes! Upgrade para Premium e personalize com seu logo.
+
+ Fazer Upgrade
+
+
+
+ }
+
+
+
+
+ @if (!isPremium)
+ {
+
+ }
+
+
+ }
+