Used AI to change project to blazor webassembly.

This commit is contained in:
2026-08-10 14:49:01 +02:00
parent 218dbe36d9
commit e1053844c0
1117 changed files with 6441 additions and 749 deletions

40
Pages/Index.razor Normal file
View File

@@ -0,0 +1,40 @@
@page "/"
@inject ScrollService ScrollService
<PageTitle>Douwco</PageTitle>
<header>
<NavMenu />
</header>
<main class="scroll_container">
<section id="home" class="scroll_section observed" data-section-name="home">
<HomeSection />
</section>
<section id="about_me" class="scroll_section observed" data-section-name="about_me">
<AboutMeSection />
</section>
<section id="apps" class="scroll_section observed" data-section-name="apps">
<AppsSection />
</section>
<section id="games" class="scroll_section observed" data-section-name="games">
<GamesSection />
</section>
</main>
<footer>
<Footer />
</footer>
@code {
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
await ScrollService.InitializeAsync();
}
}
}