Move and rename Blazor project

This commit is contained in:
2024-03-07 21:23:37 +00:00
parent 3affeac196
commit a18b68beca
27 changed files with 1870 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
<footer class="mt-auto fade-in">
<div class="mx-auto p-8 lg:p-8">
<div class="md:flex md:items-center md:justify-between">
<div class="flex space-x-6 md:order-2">
<a href="https://github.com/bdfin" class="text-slate-200 hover:text-slate-500">
<span class="sr-only">GitHub</span>
<i class="fa-brands fa-github fa-xl"></i>
</a>
<a href="https://www.linkedin.com/in/beau-findlay/" class="text-slate-200 hover:text-slate-500">
<span class="sr-only">YouTube</span>
<i class="fa-brands fa-linkedin fa-xl"></i>
</a>
</div>
<p class="mt-8 text-xs leading-5 text-slate-100 md:order-1 md:mt-0">
&copy; @DateTime.UtcNow.Year Beau Findlay. All rights reserved.
</p>
</div>
</div>
</footer>

View File

@@ -0,0 +1,11 @@
@inherits LayoutComponentBase
<div class="flex flex-col min-h-screen">
<NavBar/>
<div class="px-4 md:px-8">
@Body
</div>
<Footer></Footer>
</div>

View File

@@ -0,0 +1,11 @@
<nav class="flex items-center justify-center py-12 space-x-8 fade-in">
<NavLink href="/" Match="NavLinkMatch.All" ActiveClass="border-l-2 border-r-2 px-2 rounded">
Home
</NavLink>
<NavLink href="/contact" Match="NavLinkMatch.All" ActiveClass="border-l-2 border-r-2 px-2 rounded">
Contact
</NavLink>
<NavLink href="/this" Match="NavLinkMatch.All" ActiveClass="border-l-2 border-r-2 px-2 rounded">
This App
</NavLink>
</nav>