Skip to content

Commit

Permalink
meme frames 101
Browse files Browse the repository at this point in the history
  • Loading branch information
lopezi committed Apr 1, 2024
1 parent 06cad8a commit ec3c05d
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
64 changes: 64 additions & 0 deletions src/aoWebWallet/Pages/MemeFrames.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@page "/meme-frames"
@using aoWebWallet.Models
@inherits MvvmComponentBase<MainViewModel>
@inject IDialogService DialogService
@inject ISnackbar Snackbar

<PageTitle>@Program.PageTitlePostFix</PageTitle>


<MudContainer Class="mt-16 px-8" MaxWidth="MaxWidth.False">
<MudText Class="mb-4" Typo="Typo.h5">Meme Frames</MudText>

<MudGrid Spacing="2" Justify="Justify.Center">
<MudItem xs="12" sm="4">
<MudCard>
<MudCardHeader>
<CardHeaderAvatar>
<MudAvatar Color="Color.Secondary">I</MudAvatar>
</CardHeaderAvatar>
<CardHeaderContent>
<MudText Typo="Typo.body1">Name: MEME</MudText>
<MudText Typo="Typo.body2">Creator: Andy Tudhope</MudText>
<MudText Typo="Typo.body2"> Mint cap: 1,000,000 CRED </MudText>
</CardHeaderContent>
</MudCardHeader>
<MudCardContent Class="pb-0">
<MudProgressLinear Color="Color.Info" Size="Size.Large" Value="25" Class="mb-2">
<MudText Typo="Typo.subtitle1" Color="Color.Secondary">
<b>25%</b>
</MudText>
</MudProgressLinear>
<MudText Class="mb-2" Typo="Typo.body2">
Theme: The zeroth memecoin minted on ao: winner of hackathon prizes, poet of iframes, informer of votes, verifier of processes, pilgrim of the hyper parallel spaces between, believer in dreams, drafter of the dankest memes.
</MudText>
<MudTextField Class="mt-0" T="string" Label="Amount" HelperText="The amount to perform below action" HelperTextOnFocus="true" Variant="Variant.Text" />
</MudCardContent>

<MudCardActions>
<MudButtonGroup Color="Color.Primary" Variant="Variant.Filled">
<MudButton>Mint</MudButton>
<MudButton Disabled="true">Stake</MudButton>
<MudButton Disabled="true">Yay</MudButton>
<MudButton Disabled="true">Nay</MudButton>
</MudButtonGroup>
</MudCardActions>
<MudCardActions>
<MudIconButton Icon="@Icons.Material.Filled.Share" Color="Color.Default" />
</MudCardActions>
</MudCard>
</MudItem>
<MudItem xs="12" sm="4">
<MudPaper Class="d-flex align-center justify-center mud-width-full py-8">.</MudPaper>
</MudItem>
<MudItem xs="12" sm="4">
<MudPaper Class="d-flex align-center justify-center mud-width-full py-8">.</MudPaper>
</MudItem>
</MudGrid>
</MudContainer>

@code
{


}
1 change: 1 addition & 0 deletions src/aoWebWallet/Shared/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
}

<MudNavLink Href="token-explorer" Match="NavLinkMatch.Prefix" Class="aoww-main-nav-text" Icon="@Icons.Material.Filled.Explore">Token Explorer</MudNavLink>
<MudNavLink Href="meme-frames" Match="NavLinkMatch.Prefix" Class="aoww-main-nav-text" Icon="@Icons.Material.Filled.Api">Meme Frames</MudNavLink>

<div style="margin-top: auto; display:flex; flex-direction: row;">
<div style="border-right: 1px solid gray;">
Expand Down

0 comments on commit ec3c05d

Please sign in to comment.