blob: 24c9369e25f07601b3d0ca110bd63240845905df (
plain) (
blame)
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">
<!-- <section class="banner flexible"> -->
<!-- <figure class="logo">
<picture>
<source srcset="/assets/logo.webp" type="image/webp" />
<source srcset="/assets/logo.png" type="image/png" />
<img alt="logo" src="/assets/logo.png" />
</picture>
</figure> -->
<h1>CARPENTER TUTORING</h1>
</section>
<section class="centered">
<h2>
Building confidence on the way to content mastery.
</h2>
</section>
<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="squarshed centered" id="help">
<h2>Helpful Links</h2>
<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>
</section>
<!-- reviews -->
<section id="reviews">
<div class="card">
<h2>C.L. Cannon</h2>
<blockquote>
I hired Amy to complete an end-of-the-year evaluation for both of my Elementary aged sons. This being
our
first year of independent home instruction, the task of testing and/or evaluation was daunting! Amy put
my
fears to rest! She was super easy to work with, had great communication skills, and answered all my
questions in a timely and informative manner! I would highly recommend her services!
</blockquote>
<p>
<a href="https://goo.gl/maps/kC4aTuFqpiyLCJ2r8">View on Google</a>
or
<a href="https://g.page/carpenter-tutoring/review?np">leave a review.</a>
</p>
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
</div>
<div class="card">
<h2>Lee Crabtree</h2>
<blockquote>
Amy is a wonderful tutor who helped my child (who does not like help at all) though some difficult
classes
where the teacher was not providing the support my child needed. Highly recommended.
</blockquote>
<p>
<a href="https://goo.gl/maps/73wWvyS7azkBBkA39">View on Google</a>
or
<a href="https://g.page/carpenter-tutoring/review?np">leave a review.</a>
</p>
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
</div>
<div class="card">
<h2>Connor Fenton</h2>
<blockquote>
I was a Graduate student at the College of William and Mary who needed to pass a Latin Language test as
part
of my degree requirements. I was struggling with refreshing my Latin after a few years out of the
classroom
and Amy was both professional and helpful. With her tutoring I was able to pass my test and finish my
degree. She is very considerate and easy to work with.
</blockquote>
<p>
<a href="https://goo.gl/maps/73wWvyS7azkBBkA39">View on Google</a>
or
<a href="https://g.page/carpenter-tutoring/review?np">leave a review.</a>
</p>
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
<img src="/assets/icons/star-box.svg" alt="star" />
</div>
</section>
{% endblock %}
|