blackjack/Components/App.razor
2025-04-17 22:25:37 +07:00

36 lines
1.2 KiB
Plaintext

@using Microsoft.AspNetCore.Components.Routing
@using БлэкДжек.Components.Layout
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link href="css/app.css" rel="stylesheet" />
<link href="БлэкДжек.styles.css" rel="stylesheet" />
<HeadOutlet />
</head>
<body>
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Страница не найдена.</p>
</LayoutView>
</NotFound>
</Router>
<script src="_framework/blazor.web.js"></script>
</body>
</html>