Files
Swarm/DysonNetwork.Zone/Pages/Index.cshtml
2025-11-22 01:47:10 +08:00

16 lines
414 B
Plaintext

@page
@model IndexModel
@{
Layout = "_LayoutContained";
ViewData["Title"] = "Solar Network Pages";
}
<div class="h-full flex justify-center items-center">
<div class="text-center max-w-96">
<img src="~/favicon.png" width="80" height="80" alt="Logo" class="mb-1 mx-auto"/>
<h1 class="text-2xl">Hello World 👋</h1>
<p>Here are the Solar Network Pages</p>
</div>
</div>