-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (95 loc) · 3.22 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
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
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Eddy Nicolle - Spécialiste en communication graphique & développeur full stack"
/>
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eddy Nicolle - VisualArtisan.fr</title>
</head>
<body>
<div
id="app"
class="flex min-h-svh flex-col items-center justify-between bg-zinc-900"
>
<div
class="mt-4 inline-flex items-center justify-center text-lg font-bold text-zinc-300"
>
{ VisualArtisan }
</div>
<div class="flex flex-grow flex-col items-center justify-center px-2">
<div class="h-36 w-36">
<img
src="profil.jpg"
alt="profil picture"
class="h-36 w-36 rounded-full"
height="144"
width="144"
/>
</div>
<div class="mt-4 text-center text-4xl font-bold text-zinc-300">
Eddy Nicolle
</div>
<p class="mt-2 text-center text-zinc-300">
Communication & graphic design officer <br />
</p>
<div class="flex flex-col text-center text-zinc-300 xs:flex-row">
<p>Part-time developer</p>
<span class="mx-2 hidden xs:block">|</span>
<p>Full-time dog owner</p>
</div>
<div class="my-4 flex gap-4">
<a
href="https://www.instagram.com/serial__doodler/"
aria-label="Visiter le profil Instagram"
>
<i
class="h-7 w-7 cursor-pointer text-zinc-300 transition-colors hover:text-zinc-100"
data-lucide="Instagram"
></i
></a>
<a
href="https://www.linkedin.com/in/eddy-nicolle/"
aria-label="Visiter le profil Linkedin"
>
<i
class="h-7 w-7 cursor-pointer text-zinc-300 transition-colors hover:text-zinc-100"
data-lucide="Linkedin"
></i
></a>
<a
href="https://github.com/generalentropy"
aria-label="Visiter la profil Girhub"
>
<i
class="h-7 w-7 cursor-pointer text-zinc-300 transition-colors hover:text-zinc-100"
data-lucide="Github"
></i
></a>
<a href="https://t.me/eddnic" aria-label="Contacter via Telegram">
<i
class="h-7 w-7 cursor-pointer text-zinc-300 transition-colors hover:text-zinc-100"
data-lucide="Send"
></i
></a>
</div>
<a href="https://shop.visualartisan.fr">
<div
class="group inline-flex cursor-pointer items-center rounded-lg bg-zinc-700 px-6 py-2 text-lg text-gray-200 transition-colors hover:bg-gray-600"
>
<i
class="mr-1 h-5 w-5 cursor-pointer text-zinc-300 transition-colors"
data-lucide="Palette"
></i>
Print shop
</div></a
>
</div>
<footer id="footer" class="mb-4 text-xs text-zinc-400"></footer>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>