Skip to content

Commit e79d805

Browse files
committed
update contact page and calendar
1 parent 5f34ce8 commit e79d805

6 files changed

Lines changed: 89 additions & 18 deletions

File tree

src/_data/socialMedia.js

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
const emailHello = {
2+
title: "Email",
3+
url: "hazel at hazelweakly.me",
4+
};
5+
const emailMedia = {
6+
title: "Email for Media or Speaking inquiries",
7+
url: "media at hazelweakly.me",
8+
};
9+
const matrix = {
10+
title: "Matrix",
11+
url: "hazelweakly on matrix.org",
12+
};
13+
const signal = {
14+
title: "Signal",
15+
url: "hazelweakly dot zero one",
16+
};
117
const github = {
218
title: "GitHub",
319
url: "https://github.com/hazelweakly",
@@ -14,10 +30,6 @@ const discord = {
1430
title: "Discord",
1531
url: "https://discordapp.com/users/690271969962098728",
1632
};
17-
const reddit = {
18-
title: "Reddit",
19-
url: "https://reddit.com/u/hazelweakly",
20-
};
2133
const bluesky = {
2234
title: "Bluesky",
2335
url: "https://bsky.app/profile/hazelweakly.me",
@@ -28,7 +40,10 @@ export default {
2840
mastodon,
2941
linkedIn,
3042
discord,
31-
reddit,
32-
all_socials: [github, mastodon, bluesky, linkedIn, discord, reddit],
43+
emailMedia,
44+
matrix,
45+
signal,
46+
all_socials: [github, mastodon, bluesky, linkedIn, discord],
3347
socials: [github, mastodon, linkedIn],
48+
messaging: [signal, matrix, emailHello],
3449
};

src/_includes/partials/email.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="none" aria-label="{{ social.url }}" version="1.0">
2+
<path fill="#080341" fill-rule="evenodd"
3+
d="M3.75 5.25 3 6v12l.75.75h16.5L21 18V6l-.75-.75zm.75 2.446v9.554h15V7.695L12 14.514zm13.81-.946H5.69L12 12.486z"
4+
clip-rule="evenodd" />
5+
</svg>

src/_includes/partials/matrix.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" aria-label="{{ social.url }}" version="1.0"
2+
viewBox="0 0 48 48">
3+
<path
4+
d="M12.5 8.5h-8v31h8m23 0h8v-31h-8m-23 13.631a5.75 5.75 0 0 1 5.75-5.75h0a5.75 5.75 0 0 1 5.75 5.75v9.488M12.5 16.381v15.238M24 22.131a5.75 5.75 0 0 1 5.75-5.75h0a5.75 5.75 0 0 1 5.75 5.75v9.488"
5+
style="
6+
fill: none;
7+
stroke: currentColor;
8+
stroke-linecap: round;
9+
stroke-linejoin: round;
10+
" />
11+
</svg>

src/_includes/partials/signal.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" aria-label="{{ social.url }}" version="1.0"
2+
viewBox="0 0 48 48">
3+
<defs>
4+
<style>
5+
.d {
6+
fill: none;
7+
stroke: currentColor;
8+
stroke-linecap: round;
9+
stroke-linejoin: round;
10+
}
11+
</style>
12+
</defs>
13+
<path id="c"
14+
d="M9.156 33.457c-4.808-7.548-3.187-17.503 3.768-23.135s17.029-5.148 23.412 1.125 7.043 16.337 1.533 23.389-15.435 8.847-23.065 4.17L7.52 40.51z"
15+
class="d" />
16+
<path
17+
d="m11.787 43.324 1.911-.448m-9.645-3.73-.78 3.188c-.354 1.45.947 2.763 2.4 2.422l3.187-.746m-3.657-9.568-.451 1.847m39.854-18.44a21.4 21.4 0 0 0-1.81-4.291M3.4 17.821a21.4 21.4 0 0 1 1.814-4.288m35.495-3.063a21.7 21.7 0 0 0-3.306-3.282M7.308 10.45a21.6 21.6 0 0 1 3.308-3.277m23.686-2.049a21.5 21.5 0 0 0-4.303-1.775M13.72 5.111a21.4 21.4 0 0 1 4.308-1.771m8.315-.713a21.8 21.8 0 0 0-4.656-.004M2.644 26.497a22 22 0 0 1 0-4.994m.75 8.648a21.4 21.4 0 0 0 1.81 4.291M44.6 30.179a21.4 21.4 0 0 1-1.814 4.288m-2.094 3.083a21.6 21.6 0 0 1-3.308 3.277m-23.686 2.049a21.5 21.5 0 0 0 4.303 1.775m16.279-1.762a21.4 21.4 0 0 1-4.308 1.771m15.384-18.163a22 22 0 0 0 0-4.994m-23.699 23.87a21.8 21.8 0 0 0 4.656.004"
18+
class="d" />
19+
</svg>

src/pages/calendar.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,5 @@ If you're someone who wants to schedule 30 minutes with me to chat about life, t
88

99
Sales calls, recruiters, and cold pitches are welcome to setup an outreach meeting after first reaching out to me via LinkedIn.
1010

11-
<div class="bordered-box calendly-inline-widget" data-resize="true" data-url="https://calendly.com/hazelweakly?hide_landing_page_details=1&background_color=f3e7eb&text_color=2d161d&primary_color=8a97c7"></div>
12-
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js" async data-helmet="calendly-embed-js"></script>
13-
14-
<style data-helmet="calendly-embed-styles">
15-
.calendly-inline-widget {
16-
overflow-x: unset;
17-
box-sizing: content-box;
18-
min-width: 320px;
19-
min-height: 700px;
20-
padding: 0;
21-
}
22-
</style>
11+
<div class="tidycal-embed" data-path="hazelweakly"></div>
12+
<script type="text/javascript" src="https://asset-tidycal.b-cdn.net/js/embed.js" async data-helmet="calendar-embed-js"></script>

src/pages/contact.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
footer: true
55
---
66

7+
<p>
8+
Please send media or speaking inquiries to: {{ socialMedia['emailMedia'].url }}
9+
</p>
10+
11+
<h2 id="social-media" tabindex="-1">
12+
<a class="header-anchor" href="#social-media">
13+
<span>Social Media</span>
14+
</a>
15+
</h2>
16+
717
<ul role="list" class="px-0">
818
{% for social in socialMedia.all_socials %}
919

@@ -18,3 +28,24 @@
1828

1929
{%- endfor %}
2030
</ul>
31+
32+
<h2 id="messaging" tabindex="-1">
33+
<a class="header-anchor" href="#messaging">
34+
<span>Messaging</span>
35+
</a>
36+
</h2>
37+
38+
<ul role="list" class="px-0">
39+
{% for social in socialMedia.messaging %}
40+
41+
<li>
42+
<span class="cluster">
43+
<span class="icon inline-flex">
44+
{% include "partials/" + social.title | lower + ".html" %}
45+
</span>
46+
{{ social.url }}
47+
</span>
48+
</li>
49+
50+
{%- endfor %}
51+
</ul>

0 commit comments

Comments
 (0)