summary refs log tree commit diff
path: root/testFrontend/SafeNSound.Demo/Layout/MainLayout.razor
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-06-11 07:38:05 +0200
committerRory& <root@rory.gay>2025-06-11 07:41:37 +0200
commitd6c791af681fdcc84c5a79a7b30d35db9231e404 (patch)
tree73816b7eda8ff52e7b8b28c9ab68960554d252d3 /testFrontend/SafeNSound.Demo/Layout/MainLayout.razor
parentAPI docs (diff)
downloadnodejs-final-assignment-d6c791af681fdcc84c5a79a7b30d35db9231e404.tar.xz
Add initial demo
Diffstat (limited to 'testFrontend/SafeNSound.Demo/Layout/MainLayout.razor')
-rw-r--r--testFrontend/SafeNSound.Demo/Layout/MainLayout.razor16
1 files changed, 16 insertions, 0 deletions
diff --git a/testFrontend/SafeNSound.Demo/Layout/MainLayout.razor b/testFrontend/SafeNSound.Demo/Layout/MainLayout.razor
new file mode 100644

index 0000000..e7554be --- /dev/null +++ b/testFrontend/SafeNSound.Demo/Layout/MainLayout.razor
@@ -0,0 +1,16 @@ +@inherits LayoutComponentBase +<div class="page"> + <div class="sidebar"> + <NavMenu/> + </div> + + <main> + <div class="top-row px-4"> + <a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a> + </div> + + <article class="content px-4"> + @Body + </article> + </main> +</div> \ No newline at end of file