Add About page

This commit is contained in:
2025-04-19 21:31:38 -08:00
parent f9bbc1604b
commit 83e91efb5d
3 changed files with 56 additions and 18 deletions

View File

@@ -6,6 +6,8 @@ enableInlineShortcodes: true
canonifyURLs: true
params:
format:
date: "January 02, 2006"
navbar:
enable: true
links:
@@ -15,6 +17,8 @@ params:
link: /rates/
- name: Contact
link: /contact/
- name: About Us
link: /about/
- name: "(907) 519-8577"
phone: 19075198577

39
content/about/_index.md Normal file
View File

@@ -0,0 +1,39 @@
---
title: "About The Bearded Tek"
date: 2025-04-15
description: "The Bearded Tek, Palmer and Wasilla's IT Handyman"
layout: single
---
## Our Mission
At The Bearded Tek, our goal is to offer straightforward, dependable technology solutions without the jargon or hidden fees. Whether you need assistance with your computer, printer, network, or security cameras, we've got you covered.
## Services Offered
- **On-Site Support**: We come to your location to resolve technical issues efficiently.
- **Remote Support**: Quick and convenient assistance without the need for a physical visit.
- **Computer & Printer Services**: Troubleshooting, maintenance, and setup.
- **Networking**: Ensuring your home or business stays connected.
- **Camera Systems**: From simple setups to advanced surveillance solutions.
- **Web Design & Hosting**: Creating and maintaining your online presence.
## Transparent Pricing
We believe in fair and upfront pricing:
- **On-Site Service**: First hour at $50, additional hours at $100.
- **Remote Service**: First hour at $40, additional hours at $80.
- **Web Design**: Template-based sites starting at $100; custom designs from $150.
- **Web Hosting**: Shared hosting at $5/month; dedicated hosting at $20/month.
*Note: A 5% military discount is available.*
## Contact Us
Ready to get started or have questions?
- **Phone**: (907) 519-8577
- **Email**: [contact@beardedtek.com](mailto:contact@beardetek.com)
- **Contact Form**: [beardedtek.com](/contact?topic=about%20us)
Let The Bearded Tek handle your tech needs with professionalism and care.

View File

@@ -1,19 +1,14 @@
{{ define "main" }}
<header class="py-5 border-bottom">
<div class="container pt-md-1 pb-md-4">
<h1 class="mt-0 bd-title">{{ .Title | markdownify }}</h1>
<p class="bd-lead">{{ .Page.Params.Description | markdownify }}</p>
{{ if eq .Title "Examples" }}
<div class="d-flex flex-column flex-sm-row">
<a href="{{ .Site.Params.download.dist_examples }}" class="btn btn-lg btn-bd-primary" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download Examples');">Download examples</a>
</div>
{{ end }}
</div>
</header>
<main class="order-1 py-5 bd-content" id="content">
<div class="container">
{{ .Content }}
</div>
</main>
{{ end }}
<section class="px-4 pt-20 pb-4 dark:bg-gray-900">
<div class="format dark:format-invert w-full mx-auto text-center">
<div class="pb-2 kanit-bold text-5xl text-white">{{ .Title }}</div>
<span class="kanit-regular-italic text-md">Updated on {{ .Date.Format .Site.Params.format.date }}.</span>
</div>
</section>
<section class="container mx-auto px-4 py-8">
<section class="format lg:format-lg dark:format-invert mx-auto">
{{ .Content }}
</section>
</section>
{{ end }}