-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
120 lines (116 loc) · 4.86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AhorroFácil || Control de gastos</title>
<!-- Favicon general -->
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon_abacus.png"/>
<link rel="icon" type="image/x-icon" href="/assets/images/Abacus_35794.ico"/>
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" type="image/png" sizes="256x256" href="/assets/images/apple-touch-icon.png"/>
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" id="theme-manifest" />
<!-- Meta Tags para SEO -->
<meta name="robots" content="index, follow">
<meta name="keywords" content="control de gastos, gastos familiares, gestión de finanzas, finanzas personales, aplicación de gastos, app de finanzas, registro de gastos, control financiero, presupuesto familiar, administración de dinero, economía familiar, ahorro">
<!-- Tema para navegadores móviles -->
<meta name="theme-color" content="#49a7e9" />
<!-- Meta Tags for Search Engine Optimisation -->
<meta
name="description"
content="Controla tus gastos familiares fácilmente con nuestra app. Regístrate y descubre cómo gestionar tus finanzas de manera efectiva. ¡Comienza hoy y toma el control de tus gastos!"
/>
<!-- Open Graph Tags / SOCIAL MEDIA -->
<meta property="og:title" content="AhorroFácil || Control de gastos" />
<meta
property="og:description"
content="Controla tus gastos familiares fácilmente con nuestra app. Regístrate y descubre cómo gestionar tus finanzas de manera efectiva. ¡Comienza hoy y toma el control de tus gastos!"
/>
<meta
property="og:image"
content="/assets/images/extra/money-2724241_640.webp"
/>
<meta
property="og:url"
content="https://expensesmanagercacpython24155g8front.netlify.app/"
/>
<meta property="og:type" content="website">
<!-- Twitter Card Tags -->
<meta name="twitter:title" content="AhorroFácil || Control de gastos" />
<meta
name="twitter:description"
content="Controla tus gastos familiares fácilmente con nuestra app. Regístrate y descubre cómo gestionar tus finanzas de manera efectiva. ¡Comienza hoy y toma el control de tus gastos!"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="/assets/images/extra/money-2724241_640.webp"
/>
<!-- Schema.org for Google -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "AhorroFácil || Control de gastos",
"description": "Controla tus gastos familiares fácilmente con nuestra app. Regístrate y descubre cómo gestionar tus finanzas de manera efectiva. ¡Comienza hoy y toma el control de tus gastos!",
"url": "https://expensesmanagercacpython24155g8front.netlify.app/",
"image": "https://expensesmanagercacpython24155g8front.netlify.app/assets/images/extra/money-2724241_640.webp",
"author": {
"@type": "Person",
"name": "Ssergiomc, soluits, Miguelzu"
}
}
</script>
<!-- Canonical Tag -->
<link
rel="canonical"
href="https://expensesmanagercacpython24155g8front.netlify.app/"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
/>
<!-- Bootstrap Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"
/>
<!-- CHART.JS SCRIPT -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<!-- VUE SCRIPT -->
<script src="https://cdn.jsdelivr.net/npm/vue@3"></script>
<!-- VUE ROUTER SCRIPT -->
<script src="https://unpkg.com/vue-router@4"></script>
<!-- STYLE SHEETS -->
<link rel="stylesheet" href="./styles/index.css" />
<script
type="module"
src="https://cdn.jsdelivr.net/npm/vue@3.2.46/dist/vue.global.prod.js"
></script>
</head>
<body id="app">
<div class="main" :class="{ darktheme: isDarkMode }">
<header class='sticky-top'>
<appnavbar
:isDarkMode="isDarkMode"
:toggle-dark-mode="toggleDarkMode"
></appnavbar>
</header>
<main>
<section class="app-section">
<router-view></router-view>
</section>
</main>
<appfooter></appfooter>
</div>
<!-- Bootstrap Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<script type="module" src="./js/app.js"></script>
</body>
</html>