Skip to content

Commit

Permalink
Adds hidden page that redirects to dnd campaign landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Baur committed Jun 20, 2024
1 parent c0226d2 commit 96a4d51
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .idea/.idea.Turwaith.dev/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Turwaith.dev/Pages/DnDRedirect.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@page "/dnd"
@inject NavigationManager NavManager

<h2 id="blogpagetitle">Dungeons & Dragons Kampagne</h2>

<p>Redirecting to Notion Landing Page</p>

@code {
protected override void OnInitialized()
{
NavManager.NavigateTo("https://pale-name-9ec.notion.site/Homepage-9cbc939c483d4574bb94926add5ad999?pvs=4");
}
}

0 comments on commit 96a4d51

Please sign in to comment.