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
125
126
127
128
129
130
|
{% extends "base.html.j2" %}
{% block main %}
<!--banner-->
<section class="banner flexible">
<h1>
CARPENTER TUTORING
</h1>
<h6>
Discovering your path to success.
</h6>
</section>
<!-- offerings -->
<section id="offerings" class="cards">
<div class="card full">
<h3>
Services
</h3>
</div>
<div class="card">
<p>
<a href="/k12">
K-12
</a>
</p>
</div>
<div class="card">
<p>
<a href="/highered">
Higher Education
</a>
</p>
</div>
<div class="card">
<p>
<a href="/professional">
Professional
</a>
</p>
</div>
</section>
<!-- help -->
<section class="centered" id="help">
<h2>Helpful Links</h2>
<div class="buttons">
<a class="button primary centered" href="/brochure">View an interactive brochure of our offerings</a>
<a class="button centered" href="/policies">See policies and procedures regarding scheduling, payment, and
booking</a>
</div>
</section>
<!-- blurb -->
<section id="blurb" class="flexible">
<div>
<h2>Our Philosophy & Practice</h2>
<p>
Proudly assisting clients in our home region of Hampton Roads, VA and beyond, our private tutoring practice
serves students and professionals of all ages and stages through one-on-one appointments tailored to
individual
needs and goals.
</p>
<p>
Our approach is grounded in three core beliefs:
<ol>
<li>Everyone has their own path to success.</li>
<li>Building confidence is a vital step on the way to content mastery.</li>
<li>Taking the time to truly learn each person's preferences and ways of processing information is the
foundation of a meaningful tutoring, coaching, or mentoring relationship.</li>
</ol>
These beliefs guide every aspect of our work. We recognize, respect, and celebrate the individuality of each
person
we serve. By infusing compassion, understanding, and patience into every appointment and valuing client voices
when
setting focus areas, we meet clients where they are to build meaningful relationships that offer not only
instruction but encouragement.
</p>
<p>
Most services are offered by founder Amy Carpenter, M.Ed. A small team of experienced and caring tutors
assists
with additional subjects and specialties. We specialize in remote services, with limited in-person support
available in select locations.
</p>
<p>
We are ready and excited to serve you as you discover your path to success. Contact us today to begin your
journey.
</p>
</div>
<figure class="shadowy">
<picture>
<source srcset="/assets/amy-sunny.webp" type="image/webp" />
<source srcset="/assets/amy-sunny.png" type="image/png" />
<img alt="Amy Carpenter" src="/assets/amy-sunny.png" />
</picture>
<figcaption>Amy Carpenter, M.Ed.</figcaption>
</figure>
</section>
<!-- reviews -->
<section id="reviews" class="cards">
{% let name = "Kim J." %}
{% let title = "K-12 Subject Tutoring parent" %}
{% let quote = "So glad we found Amy! I have seen my daughter's confidence and grades improve since Amy started tutoring her. She meets my daughter at her level and helps her grow. Can't say enough good things about her!" %}
{% let stars = 5 %}
{% include "review.html.j2" %}
{% let name = "Kristina W." %}
{% let title = "K-12 Subject Tutoring & Higher Education Academic Coaching parent" %}
{% let quote = "Amy Carpenter is an amazingly gifted tutor. She is kind, patient, potisiv[e], encouraging, and supportive. She treats all of her students with respect and never makes them feel \"lesser than\" or that their questions are \"stupid.\" She has made a huge difference to our lives and our family is very thankful for her expertise and support!" %}
{% let stars = 5 %}
{% include "review.html.j2" %}
{% let name = "Karla R." %}
{% let title = "Higher Education Academic Coaching parent" %}
{% let quote = "Amy does a great job at keeping our son on task and ensuring that he does not miss any assignments or important deadlines. I value Amy’s level headedness the most in our interactions as I feel like I can accidentally slip into anxiety mode with my son when he has hiccups and Amy has been a great resource in helping me check my emotions as she calmly assures me that he [is] staying on track with his studies. Amy has also gone above and beyond by helping our son contemplate his next stage with regard to graduate school or entering the workforce which is definitely still a \"work in progress\". I can wholeheartedly recommend Amy and have already done so many times to friends and family." %}
{% let stars = 0 %}
{% include "review.html.j2" %}
</section>
{% endblock %}
|