-
Notifications
You must be signed in to change notification settings - Fork 0
/
voxaroo.html
51 lines (44 loc) · 2.04 KB
/
voxaroo.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
<!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">
Voxaroo is a web application that allows users to connect with people within his community to sale and
buy
products. The backend of this project is an <strong>express</strong> api connected to a
<strong>MySql</strong> database.
Using libraries like <strong>Jwt</strong> to manage the session, and authentication.
<br>
<br>
The project's frontend has been made with <strong>React</strong> and <strong>Tailwind</strong> as well
as React-Router to manage the routes of the project.
<br>
Future plans is to design a React-Native app to make this project available for mobile devices.
</p>
<div class="project_images_container">
<img src="assets/images/voxaroo.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/Voxaroo_web_frontend" target="_blank" class="project_button">
Repository
</a>
</div>
</section>
</body>
</html>