-
Notifications
You must be signed in to change notification settings - Fork 0
/
project-tenant-creation.html
105 lines (97 loc) · 4.34 KB
/
project-tenant-creation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Pierre Philouze</title>
<link rel="stylesheet" href="style/style-project.css">
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/img/favicon/favicon-16x16.png"
/>
</head>
<body>
<nav>
<a href="index.html" class="nav-icon" aria-label="visit homepage" aria-current="page">
✶ Home
</a>
<div class="main-navlinks">
<div class="navlinks-container">
<a href="project-landing-pages.html">Previous project</a>
<a href="project-ttc.html">Next project</a>
</div>
</div>
</nav>
<section class="hero">
<div class="introduction-text">
<h1>Network tenant creation.</h1>
<p>Help the user create his tenant step by step.</p>
</div>
<div class="tags">
<p>User experience</p>
<p>User interface</p>
<p>Frontend</p>
<p>Backend</p>
<p>Responsive</p>
<p>Prototyping</p>
</div>
</section>
<div class="introduction-visual">
<img src="assets/img/project/tenant-creation/tenant-creation-general-visual.png" alt="">
</div>
<section class="description reveal">
<img class="visual-container" id="img-1" src="assets/img/project/tenant-creation/visual-tenant-creation-initial.png" alt="">
<div class="description-text">
<h2>Subscribing and running a network server.</h2>
<p>When subscribing to a plan in our company, it is necessary to create a tenant for your network. This is a feature that requires some UX research and some UI exploration.</p>
</div>
</section>
<section class="description reveal">
<img class="visual-container" id="img-2" src="assets/img/project/tenant-creation/visual-tenant-creation-wireframe.png" alt="">
<div class="description-text">
<h2>User experience.</h2>
<p>Wireframing using Balsamiq and conduct UX research to define the optimal user experience for this particular use case, using the wizard pattern.</p>
</div>
</section>
<section class="description reveal">
<img class="visual-container" id="img-1" src="assets/img/project/tenant-creation/visual-tenant-creation-prototype.png" alt="">
<div class="description-text">
<h2>User interface.</h2>
<p>Create mockups in Figma, using the design system. Create a desktop and mobile version. For complex use cases, I also create prototypes to further enhance the user experience. I then hand over the project to developers and organize feedback sessions for refinement.</p>
</div>
</section>
<section class="description reveal">
<img class="visual-container" id="img-1" src="assets/img/project/tenant-creation/visual-tenant-creation-final.png" alt="">
<div class="description-text">
<h2>Release the feature.</h2>
<p>We first release our features on a preview server to conduct user testing. Once the team is satisfied with the results, we proceed to release the features online.</p>
</div>
</section>
<section class="text-more-details">
<div class="thank-you-group">
<p class="thank-you-emoji" style="font-size: 2rem;">👍</p>
<p class="thank-you">Thank you for reading</p>
</div>
<p>More details available on request: <span class="more-details-email"><a href="mailto:[email protected]">[email protected]</a></span></p>
</section>
<div class="nav-project">
<a class="nav-previous" href="project-landing-pages.html"><p><b>Previous project</b><br/><span class="previous-project-name">Landing pages</span></p></a>
<a class="nav-home" href="index.html"><p><b>Home</b></p></a>
<a class="nav-next" href="project-ttc.html"><p><b>Next project</b><br/><span class="previous-project-name">The Things Conference</span></p></a>
</div>
<script src="js/script-scroll.js"></script>
</body>
</html>