diff options
Diffstat (limited to 'src/etc')
-rw-r--r-- | src/etc/employment/index.php | 12 | ||||
-rw-r--r-- | src/etc/employment/techsupport.php | 29 |
2 files changed, 41 insertions, 0 deletions
diff --git a/src/etc/employment/index.php b/src/etc/employment/index.php new file mode 100644 index 0000000..c41b29d --- /dev/null +++ b/src/etc/employment/index.php @@ -0,0 +1,12 @@ +<?php
+$title = "Employment";
+require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
+require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
+?>
+<p>
+ This page is a list of things you could pay me to do. Isn't that fun?
+</p>
+<ul>
+ <li><h3><a href="techsupport.php">Tech Support</a></h3></li>
+</ul>
+<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
diff --git a/src/etc/employment/techsupport.php b/src/etc/employment/techsupport.php new file mode 100644 index 0000000..803778a --- /dev/null +++ b/src/etc/employment/techsupport.php @@ -0,0 +1,29 @@ +<?php
+$title = "Tech Support";
+require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
+require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
+?>
+<p>
+ I've grown up around computers and am intimately familiar with the operation of all types of digital systems.
+ I'm always happy to help set up new computers, phones, and tablets, or to assist in resolving problems that
+ have emerged. I understand exactly how important your data is--whether that's
+ your photos, your writing, or your work--and I'm always willing to
+ be flexible in my approach to engineering a solution that fits your needs.
+</p>
+<p>
+ As a programmer, I have thousands of hours of experience with every facet of Windows, MacOS, and Linux computers--
+ I've built multiple computers for my own personal use, and I maintain server hardware on premises to run my services.
+</p>
+<h2>Examples</h2>
+<ul>
+ <li><p>Configuring cloud storage</p></li>
+ <li><p>Backing up photographs</p></li>
+ <li><p>Decluttering/improving performance of old computers</p></li>
+ <li><p>Tech education/explaining the optimal use of systems</p></li>
+ <li><p>Updating and maintaining Web sites</p></li>
+</ul>
+<h2>Contact</h2>
+<p>
+ Please contact me at kai@kaistevenson.com.
+</p>
+<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|