blob: 88d5b831c3eccd334ccfe9e52473da4983acdbe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta rel="robots" content="noindex, nofollow">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>@ViewData["Title"] - VentaSync</title>
<link rel="stylesheet" href="https://fonts.bunny.net/css?family=inter:300,400,700">
<link rel="stylesheet" href="~/styles/common.css" />
@await RenderSectionAsync("Head", required: false)
</head>
<body>
@RenderBody()
</body>
</html>
|