This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clients.html
executable file
·126 lines (104 loc) · 4.79 KB
/
clients.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
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="view-transition" content="same-origin" />
<link rel="icon" type="image/png" href="assets/logo/favicon.png" />
<link rel="manifest" href="manifest.json">
<title>Nuestros Clientes</title>
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/nav.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/pages/development.css">
<link rel="stylesheet" href="styles/pages/about.css">
<link rel="stylesheet" href="styles/viewTransitions.css">
<script src="scripts/events.js" defer></script>
<script src="scripts/viewTransition.js" defer></script>
</head>
<body>
<header class="header-container">
<div class="header-content">
<a href="./" class="header-home-button">
<img class="header-logo-img" src="assets/logo/logo.webp" alt="Rocket Code">
<h2 class="header-title">Rocket Code</h2>
</a>
<img src="assets/icons/menu-2.svg" class="menu-button-icon" alt="menu-icon">
</div>
</header>
<nav class="nav-container">
<a class="nav-item" href="./">
<img src="assets/icons/users.svg" class="nav-item-icon" alt="users-icon">
Sobre Nosotros
</a>
<a class="nav-item" href="clients">
<img src="assets/icons/coins.svg" class="nav-item-icon" alt="coins-icon">
Nuestros Clientes
</a>
<a class="nav-item" href="software">
<img src="assets/icons/code.svg" class="nav-item-icon" alt="code-icon">
Solución de Software
</a>
<a class="nav-item" href="network">
<img src="assets/icons/world.svg" class="nav-item-icon" alt="world-icon">
Solución de Red
</a>
<a class="nav-item" href="office">
<img src="assets/icons/table.svg" class="nav-item-icon" alt="table-icon">
Solución Ofimática
</a>
<a class="nav-item" href="price">
<img src="assets/icons/coin.svg" class="nav-item-icon" alt="coin-icon">
Presupuesto
</a>
<a class="nav-item" href="development">
<img src="assets/icons/settings.svg" class="nav-item-icon" alt="settings-icon">
Desarrollo
</a>
</nav>
<main class="main-container">
<h1 class="page-title">
Nuestros Clientes
</h1>
<article>
<h3 class="article-title">
Sistema de gestión para Farmacias
</h3>
<p>
El cliente solicitó un sistema de software para facilitar la gestión del inventario y las ventas de la farmacia.
Anteriormente, el cliente manejaba inventarios y ventas manualmente mediante hojas de cálculo, lo que generaba constantes
inconsistencias en los cortes de inventario y retrasos en los cobros durante las ventas.
</p>
<p>
Nuestra solución de software tiene como objetivo permitir al cliente automatizar la gestión del inventario, manejando
automáticamente las entradas y salidas de inventario, permitiendo ventas ágiles, teniendo un control preciso de los ítems
con los que se dispone.
</p>
</article>
</main>
<footer class="footer-container">
<div class="footer-first">
<a href="https://www.instagram.com/utj_oficial/" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-instagram.svg" alt="icon-instagram">
</a>
<a href="https://www.facebook.com/utj.universidad" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-facebook.svg" alt="icon-facebook">
</a>
<a href="https://twitter.com/utj_oficial" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-twitter.svg" alt="icon-twitter">
</a>
<a href="https://www.youtube.com/@OFICIALUTJ" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-youtube.svg" alt="icon-youtube">
</a>
<a href="https://github.com/IsmaCortGtz/rocket-code/" target="_blank" rel="noopener noreferrer" class="footer-button">
<img class="footer-icon" src="assets/icons/brand-github.svg" alt="icon-github">
</a>
</div>
<div class="footer-second">
2024. Rocket Code
</div>
</footer>
</body>
</html>