-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 3.01 KB
/
index.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
<!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">
<link href="./dist/output.css" rel="stylesheet">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Sebastián Cancino Espinoza</title>
</head>
<body class="bg-slate-100 text-slate-700 dark:bg-slate-900 dark:text-slate-200 h-screen p-6 md:p-12">
<div class="relative mx-auto w-full md:w-4/5 lg:w-2/3 xl:w-1/2 flex flex-col h-full justify-center">
<header class="absolute top-0 left-0 w-full flex justify-between">
<a href="/">
<code class="text-lg md:text-2xl font-bold text-purple-500 hover:text-purple-400 transition-all lg:leading-relaxed cursor-pointer"><S/></code>
</a>
<nav class="flex space-x-6">
<a href="/projects">
<code class="text-lg md:text-2xl text-purple-500 hover:text-purple-400 transition-all lg:leading-relaxed cursor-pointer">proyectos</code>
</a>
<a class="list-link" href="docs/docs/CV Sebastián Cancino Espinoza [ES].pdf" download>
<code class="text-lg md:text-2xl text-purple-500 hover:text-purple-400 transition-all lg:leading-relaxed cursor-pointer">cv</code>
</a>
</nav>
</header>
<main class="flex flex-col space-y-10 justify-center">
<h1 class="text-2xl md:text-4xl">¡Hola! 👋</h1>
<p class="text-left text-md md:text-lg mt-4 tracking-wide leading-relaxed lg:leading-loose">Soy <span class="text-purple-500">Sebastián</span>, Ingeniero Civil Industrial de la Universidad de Concepción, Chile. <br> Me apasiona el uso de las tecnologías de la información para contar historias a través de los datos, comprender de mejor forma los fenómenos que rodean a nuestras sociedades, y proponer soluciones de impacto, que ayuden a mejorar la vida de las personas.</p>
<ul class="w-full flex space-x-8">
<li class="text-2xl text-purple-500 hover:text-purple-400 cursor-pointer transition-all hover:scale-110">
<a class="list-link" href="https://www.github.com/scespinoza"><i class="fa-brands fa-github"></i></a>
</li>
<li class="text-2xl text-purple-500 hover:text-purple-400 cursor-pointer transition-all hover:scale-110">
<a class="list-link" href="mailto:[email protected]"><i class="fa-regular fa-envelope"></i></a>
</li>
<li class="text-2xl text-purple-500 hover:text-purple-400 cursor-pointer transition-all hover:scale-110">
<a class="list-link" href="https://twitter.com/secespinoza"><i class="fa-brands fa-twitter"></i></a>
</li>
</ul>
</main>
</div>
</body>
</html>