blackjack/Components/App.razor

24 lines
736 B
Plaintext
Raw Normal View History

2025-04-16 14:27:41 +07:00
@using Microsoft.AspNetCore.Components.Routing
<!DOCTYPE html>
<html lang="ru">
<head>
2025-04-16 14:27:41 +07:00
<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" />
2025-04-16 14:27:41 +07:00
<link href="БлэкДжек.styles.css" rel="stylesheet" />
<HeadOutlet />
</head>
<body>
<Routes @rendermode="InteractiveServer" />
<script src="_framework/blazor.web.js"></script>
</body>
</html>