-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
100 lines (95 loc) · 4.41 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Jade Thornton</title>
<link rel="stylesheet" href="style.css" />
<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=Righteous&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="main">
<header>
<div class="logo">
<!-- <img src="jade.jpeg" alt="Jade Thornton" /> -->
</div>
<h1 class="text-white font-bold mb-4 mt-2">
Adventure with Jade
</h1>
<div class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</div>
</header>
<div class="container mx-auto px-4">
<h1 class="text-4xl font-bold mb-4">About Jade</h1>
<section>
<h3 class="text-2xl mb-2">My Journey</h3>
<p class="mb-6">
I began my journey in the software engineering field in
2019, after earning my B.A in Symbolic Systems from
Stanford. I was fortunate enough to work with Microsoft,
where I gained invaluable experience and honed my
skills. My journey then led me to a Series-C startup,
Hipcamp, where I was quickly promoted due to my
dedication and hard work.
</p>
</section>
<section>
<h3 class="text-2xl font-semibold mb-2">My Mission</h3>
<p class="text-lg mb-4">
In 2021, I founded "Adventure with Jade", an online
coaching service aimed at empowering early-career women
software engineers. I believe in the power of
personalization and empowerment, and I strive to equip
my clients with the tools, knowledge, and confidence
they need to succeed in their job search.
</p>
</section>
<section>
<h3 class="text-2xl font-semibold mb-2">My Approach</h3>
<p class="text-lg mb-4">
My approach is centered around personalization and
empowerment. I offer 1-on-1 coaching, resume feedback,
mock interviews, and more. I believe that every
individual is unique, and I tailor my coaching to meet
the specific needs of each client.
</p>
</section>
<section>
<h3 class="text-2xl font-semibold mb-2">My Commitment</h3>
<p class="text-lg mb-4">
I am committed to using my experiences and knowledge to
guide others. I understand the challenges that come with
being a woman in the software engineering field, and I
am dedicated to helping others overcome these challenges
and succeed in their careers.
</p>
</section>
<section>
<h3 class="text-2xl font-semibold mb-2">Connect with Me</h3>
<p class="text-lg mb-4">
I would love to hear from you! Whether you have a
question, need advice, or just want to chat, feel free
to reach out. I am always here to help and support you
on your journey.
</p>
<h3>
<a
href="https://calendly.com/jadephare/30-minutes"
class="text-blue-100 text-3xl"
>✨Book a free call here✨</a
>
</h3>
</section>
</div>
</div>
</body>
</html>