Files
aliasvault/src/AliasVault.Client/Auth/Pages/Setup/Components/WelcomeStep.razor
Leendert de Borst d5e6b7a5c7 Update text (#326)
2024-10-30 23:25:06 +01:00

15 lines
464 B
Plaintext

<div class="w-full max-w-md mx-auto">
<p class="mt-12 text-gray-600 dark:text-gray-400 mb-4 text-center">
AliasVault is a secure app which help you create and manage your online accounts and passwords.
Let's get you set up with your new vault.
</p>
</div>
@code {
/// <summary>
/// The event that is triggered when the user clicks the next button.
/// </summary>
[Parameter]
public EventCallback OnNext { get; set; }
}