-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (120 loc) · 5.97 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>Júlia Patricia Wolschick</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="src/styles.css"/>
<link rel="stylesheet" href="src/styles-ids.css"/>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>😄</text></svg>">
<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=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://www.nerdfonts.com/assets/css/webfont.css"
/>
</head>
<body class="fcol">
<main>
<section id="secao-eu" class="fcol">
<h1 class="back-title">Olá mundo!</h1>
<div id="banner-eu" class="fcol">
<img id="eu-img" alt="eu" src="src/assets/eu.png" class="img-circular" onclick="imagemAleatoria()"/>
<b style="font-size: 1.5rem">Júlia Patricia Wolschick</b>
<span style="font-size: .9rem"><span id="minha-idade"></span>, Técnica em Informática</span>
<span style="font-size: .9rem">Cursando Engenharia de Computação</span>
<div id="conexoes" class="frow">
<a href="https://github.com/jwols27" target="_blank" class="tooltip">
<i class="nf nf-dev-github"></i>
<span class="tooltip-text">GitHub: jwols27</span>
</a>
<a href="https://linkedin.com/in/júlia-patricia-wolschick-a22699261" target="_blank" class="tooltip">
<i class="fa-brands fa-linkedin"></i>
<span class="tooltip-text">LinkedIn</span>
</a>
<a href="mailto:[email protected]" target="_blank" class="tooltip">
<i class="nf nf-md-email"></i>
<span class="tooltip-text">[email protected]</span>
</a>
<a href="https://bsky.app/profile/juwuba27.bsky.social" target="_blank" class="tooltip">
<i class="fa-brands fa-bluesky"></i>
<span class="tooltip-text">Bluesky: juwuba27</span>
</a>
</div>
</div>
<div id="desenho"></div>
</section>
<section id="secao-2">
<h2 class="back-title">Projetos</h2>
<article id="unoesc" class="card w-100" style="; margin-top: -2.5rem">
<div class="card-img" draggable="false">
<img alt="Unoesc" src="src/assets/logo-unoesc.png"/>
</div>
<div class="card-text">
<b class="card-title">Unoesc ON</b>
<p class="card-desc">Trabalhei no aplicativo Unoesc ON (aplicativo oficial da Unoesc) enquanto fazia meu
estágio lá.</p>
<p class="card-desc">Foi utilizado bastante Flutter, SQL, Node, e React.</p>
<a href="https://play.google.com/store/apps/details?id=com.unoesc.android.unoescon&pcampaignid=web_share"
class="card-desc botao-link" target="_blank" draggable="false">
<i class="nf nf-fa-google_play" style="font-size: 1.1rem; margin-right: .2rem"></i> Dê uma olhada no
aplicativo!</a>
<div class="grupo-icones">
<i class="nf nf-dev-flutter tooltip">
<span class="tooltip-text">Flutter</span>
</i>
<i class="nf nf-dev-sqldeveloper tooltip">
<span class="tooltip-text">SQL</span>
</i>
<i class="nf nf-fa-node_js tooltip">
<span class="tooltip-text">NodeJs</span>
</i>
<i class="nf nf-dev-react tooltip">
<span class="tooltip-text">React</span>
</i>
<i class="nf nf-dev-dart tooltip">
<span class="tooltip-text">Dart</span>
</i>
</div>
</div>
</article>
<article id="maratona" class="card w-100">
<div class="card-text rev">
<b class="card-title">Website Oficial da Maratona de Programação SBC 2023</b>
<p class="card-desc">Durante meu estágio, fiquei responsável de fazer o site oficial da Maratona de
Programação SBC de 2023. Foi uma ótima experiência para mim, consegui aprender bastante nesse
período.</p>
<p class="card-desc">Foi utilizado React com TypeScript.</p>
<a href="https://github.com/jwols27/web-maratona-2023"
class="card-desc botao-link" target="_blank" draggable="false">
<i class="nf nf-dev-github" style="font-size: 1.1rem; margin-right: .2rem"></i> Acesse o repositório
clicando aqui.</a>
<div class="grupo-icones">
<i class="nf nf-dev-react tooltip">
<span class="tooltip-text">React</span>
</i>
<i class="nf nf-dev-typescript tooltip">
<span class="tooltip-text">TypeScript</span>
</i>
</div>
</div>
<div class="card-img" draggable="false">
<img alt="Maratona SBC" src="src/assets/logo-maratona.png"/>
</div>
</article>
</section>
</main>
<footer class="fcol">
<p>© 2025 Júlia Patricia Wolschick.</p>
<p>Todos os direitos reservados.</p>
</footer>
</body>
<script src="src/script.js"></script>
</html>