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
|
{% extends "base.html.j2" %}
{% block main %}
<section class="banner">
<h1>Services for Professionals</h1>
</section>
<section>
<h2>
Planning, writing, editing, and thought partnership for professionals of all fields and levels.
</h2>
</section>
<section id="offerings" class="cards">
<div class="card full">
<h3>
Services for Professionals
</h3>
</div>
<div class="card">
<p> <a href="#offering-leadership-mentoring">Leadership Mentoring</a></p>
</div>
<div class="card">
<p> <a href="#offering-time-management-coaching">Time Management Coaching</a></p>
</div>
<div class="card">
<p> <a href="#offering-writing-support">Writing Support</a></p>
</div>
</section>
<section id="offering-leadership-mentoring">
<h2>Leadership Mentoring</h2>
<p>
Making decisions, navigating workplace politics, and guiding the people who work below and alongside you aren't
easy — especially if you're facing them alone. By partnering with a confidential mentor outside your
organization, you can freely discuss your situation without fear of repercussions, receive and consider
different perspectives, an gain a sounding board in weighing different courses of action. Leadership mentoring
teaches healthy processes for decision-making and managing difficult situations so professionals can lead with
confidence.
</p>
</section>
<section id="offering-time-management-coaching">
<h2>Time Management Coaching</h2>
<p>
Time Management Coaching teaches an models the skills professionals need to navigate the demands of their
careers. We work together to create and execute realistic plans to handle the responsibilities of each week.
Tailored to each client's individual needs, Time Management Coaching provides a partner in navigating both
professional and personal responsibilities with the goal of decreasing stress and increasing confidence,
autonomy, and self-sufficiency. Topics covered include but are not limited to
<ul>
<li>Time and stress management </li>
<li>Task prioritization </li>
<li>Organization </li>
<li>Motivation </li>
<li>Procrastination </li>
<li>Self-advocacy </li>
<li>Communication </li>
<li>Understanding supervisor expectations</li>
</ul>
</p>
</section>
<section id="offering-writing-support">
<h2>Writing Support</h2>
<p>
A clear message, appropriate tone, and well-supported points are vital for successful writing in a professional
setting. Whether you're writing a delicate email, an annual report, a request for funding, or anything in
between, this offering will help you anticipate and circumvent possible misinterpretations of your writing,
identify areas to strengthen your message or evidence, and adopt a tone suited to your audience and situation.
On-going coaching relationships for general writing support as well as editing services are available.
</p>
</section>
{% endblock %}
|