-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (66 loc) · 1.75 KB
/
index.html
File metadata and controls
82 lines (66 loc) · 1.75 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Augoor Motion Examples</title>
</head>
<style>
body {
margin: 0;
height: 100vh;
background: linear-gradient(135deg, #0f0f0f, #1b0e1e);
color: white;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.index {
width: 500px;
}
ul li {
line-height: 50px;
}
a {
color: #aaaaaa;
text-decoration: none;
font-size: 18px;
}
*{
text-align: left;
}
p{
color: #5c5c5c;
line-height: 23px;
font-size: 1.3rem;
}
.new{
background-color: #3d9225;
color:#0f310b;
padding: 6px 9px;
font-size: 11px;
font-weight: bolder;
border-radius: 16px;
}
h1 , h3{
color:#aaaaaa;
}
</style>
<body>
<div class="index">
<h1>Augoor Motion Examples</h1>
<p>Esta página está diseñada para que puedas explorar y probar
las microinteracciones del producto en tiempo real. Aquí podrás
experimentar cómo cada detalle del diseño responde a las acciones
del usuario, asegurando una experiencia fluida y atractiva.
Es una herramienta ideal para validar y refinar las interacciones
antes de la implementación final.</p>
<h3>Prototypes:</h3>
<ul>
<!--li><a href="asisstant-prototype-v2/index.html">Code Assistant (Usability test)</a></li-->
<li><a href="microinteraction-chat-assistant-field/index.html">Campo de texto Code Assistant</a></li>
<li><a href="microinteraction-search-field/index.html">Campo búsqueda módulo Search <span class="new">Nuevo</span></a></li>
</ul>
</div>
</body>
</html>