diff --git a/Pages/Dashboard.razor b/Pages/Dashboard.razor index 64f671e..9a88b74 100644 --- a/Pages/Dashboard.razor +++ b/Pages/Dashboard.razor @@ -10,14 +10,21 @@ .non-resizable-text-area { resize: none; } + + .preview-image { + margin-top: 15px; + max-width: 100px; + max-height: 100px; + border-radius: 10px; + }
-
+
- +
@@ -25,9 +32,9 @@
-

Compartir

+

Textos

- Compárte tu página de afiliado con los clientes a través del siguiente enlace. + Añade un título corto y una descripción sobre tu invitación al cliente.

@@ -36,8 +43,13 @@
- - + + +
+ +
+ +
@@ -50,7 +62,7 @@
- +
@@ -58,9 +70,10 @@
-

Textos

+

Imágenes

- Añade un título corto y una descripción sobre tu invitación al cliente. + Añade imágenes para captar la atención del cliente.
+ El fondo de la página debe de ser un tile (un trozo de un patrón que se repita)

@@ -69,13 +82,15 @@
- - + + +
- - + + +
@@ -88,7 +103,7 @@
- +
@@ -96,10 +111,9 @@
-

Imágenes

+

Compartir

- Añade imágenes para captar la atención del cliente.
- El fondo de la página debe de ser un tile (un trozo de un patrón que se repita) + Compárte tu página de afiliado con los clientes a través del siguiente enlace.

@@ -108,13 +122,8 @@
- - -
- -
- - + +
@@ -137,6 +146,8 @@ private AffiliateStyle? customStyle; private String customTitle = ""; private String customDescription = ""; + private String customAvatar = ""; + private String customBackground = ""; protected override async Task OnInitializedAsync() { @@ -152,6 +163,8 @@ { customTitle = customStyle.GetTitle(); customDescription = customStyle.GetSummary(); + customAvatar = customStyle.GetAvatarUrl(); + customBackground = customStyle.GetBackgroundUrl(); } }