Files
DiunaBI/DiunaBI.UI.Web/Components/App.razor

39 lines
1.4 KiB
Plaintext
Raw Normal View History

2025-11-06 10:20:00 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
2025-12-02 13:43:01 +01:00
<title>DiunaBI App</title>
2025-11-06 10:20:00 +01:00
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
2025-11-09 19:39:52 +01:00
<link href="DiunaBI.UI.Web.styles.css" rel="stylesheet" />
2025-12-01 12:35:22 +01:00
<link href="app.css" rel="stylesheet" />
2025-11-19 13:11:07 +01:00
<link rel="icon" type="image/png" href="favicon.png" />
2025-11-06 10:20:00 +01:00
<script src="https://accounts.google.com/gsi/client" async defer></script>
<HeadOutlet />
</head>
<body>
2025-12-05 10:07:45 +01:00
<DiunaBI.UI.Shared.Components.Layout.Routes @rendermode="InteractiveServer" />
2025-11-06 10:20:00 +01:00
<div id="blazor-error-ui">
<environment include="Staging,Production">
An error has occurred. This application may no longer respond until reloaded.
</environment>
<environment include="Development">
An unhandled exception has occurred. See browser dev tools for details.
</environment>
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.web.js"></script>
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script src="_content/DiunaBI.UI.Shared/js/auth.js"></script>
</body>
</html>