LANCommander/LANCommander.Client/UI/Shared/MainLayout.razor
Pat Hartl d3f0ba6380 Redirect to auth, selectable games
Restructured the client project to put everything UI related under the UI directory. Some things had to be changed to support this, mostly things where Blazor is looking for the router or main layout. Library view now supports clicking on the game and getting the details about it.
2024-05-19 19:08:18 -05:00

21 lines
No EOL
546 B
Text

@namespace LANCommander.Client.Components.Layout
@inherits LayoutComponentBase
<Layout>
<Header>
<Menu Theme="MenuTheme.Dark" Mode="MenuMode.Horizontal" Class="ant-menu-left">
<MenuItem>Library</MenuItem>
<MenuItem>Downloads</MenuItem>
<MenuItem RouterLink="/Authenticate">Auth</MenuItem>
</Menu>
<Menu Theme="MenuTheme.Dark" Mode="MenuMode.Horizontal" Class="ant-menu-left">
</Menu>
</Header>
<Content>
@Body
</Content>
</Layout>
<AntContainer />