-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknowledge-base_outdated.html
87 lines (86 loc) · 3.57 KB
/
knowledge-base_outdated.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Mauricio M.</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="mailto:[email protected]"
>Email</a
>
</li>
</ul>
</div>
</nav>
<section id="about">
<h1>Knowledge base development</h1>
<div class="project">
<p>
vLex is a Spanish company that provides a search engine for
legal documents. It's popular with law schools in both
Spanish and English-speaking countries.
</p>
<p>
In 2021, I supported the renovation of their
<a
href="https://support.vlex.com/"
rel="noopener noreferrer"
>Knowledge Base</a
>.
</p>
<p>
This project consisted of starting the knowledge base for
the company to share with users. The project started from an
old and outdated manual. The main change proposed in this
project was to change it from feature-based to a more
user-friendly approach. This is reflected in the "Getting
started" and the "How-to guides" sections.
</p>
<p>
❗I have not been part of this project for a couple of years
now, and it has evolved on its own. I was not involved in
the creation of the videos, but the ideas I proposed can
still be seen throughout the knowledge base.
</p>
</div>
<a href="https://support.vlex.com/" rel="noopener noreferrer"
><img
src="images/vLex.png"
style="max-width: 80%; margin-left: 10%; margin-right: 10%"
/></a>
</section>
</body>
</html>