Files
prefab-page-detail/Prefab.Web.Client/Pages/NotFound.razor
2025-10-27 17:39:18 -04:00

13 lines
293 B
Plaintext

@page "/not-found"
@layout MainLayout
@rendermode InteractiveAuto
<PageTitle>Page Not Found</PageTitle>
<div class="block mt-4">
<div class="container container--max--xl">
<h3>Not Found</h3>
<p>Sorry, the content you are looking for does not exist.</p>
</div>
</div>