-
Notifications
You must be signed in to change notification settings - Fork 0
/
store-mgmt.html
58 lines (51 loc) · 2.53 KB
/
store-mgmt.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./assets/images/programador-pc.svg" type="image/x-icon">
<!-- ============================== ICONS ============================== -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!-- ============================== Swipper ============================== -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="./assets/css/style.css">
<title>Fabián Gutiérrez</title>
</head>
<body>
<section id="project_section">
<div class="project_container">
<p class="project_text">
I made this project for a local store that needed to manage their products, providers, orders, and
sales. 🛍️ This project has been made with <strong>React</strong> with <strong>Tailwind</strong> in the
frontend, <strong>NodeJs</strong> in the backend,
and the database in <strong>PostgreSQL</strong>. 💼
<br>
This project is a desktop application made with <strong>ElectronJs</strong> that uses web tools to make
this possible.
💻
<br>
<br>
I use multiple libraries to handle validations, manage the routes, and simplify the database connection,
including migrations, retrieval, and data insertion. 📚
<br>
<br>
This project has been quite a challenge. I had to learn a lot of new things to make this possible. I had
to learn how to configure React with an Electron.js app and how to send and retrieve information from
the backend (which is within the project itself). 👨💻
</p>
<div class="project_images_container">
<img src="assets/images/store_management.png" class="project_img">
<img src="assets/images/store_management2.png" class="project_img">
</div>
</div>
<div class="project_button_container">
<a href="index.html#projects" class="project_button">
Home
</a>
<a href="https://github.com/FabianGML/store_management_desk" target="_blank" class="project_button">
Repository
</a>
</div>
</section>
</body>
</html>