Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add About page #2

Merged
merged 12 commits into from
Jun 7, 2024
Binary file added public/about/alex-blog-card.webp
Binary file not shown.
Binary file added public/about/map.webp
Binary file not shown.
2 changes: 0 additions & 2 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ import { Icon } from 'astro-icon/components'
<li class="menu-item has-dropdown">
<button aria-haspopup="true" aria-expanded="false">Extras</button>
<ul class="dropdown-menu">
<!-- Add back once the about page is complete.
<li class="submenu-item">
<a href="/about/">About</a>
</li>
-->
<li class="menu-item">
<a href="https://blog.alexsguardian.net" title="external link" rel="external noopener noreferrer">Alex's Blog</a>
</li>
Expand Down
41 changes: 41 additions & 0 deletions src/pages/about.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
import DefaultLayout from '../layouts/DefaultLayout.astro'
import { Card } from 'accessible-astro-components'
import ContentMedia from '../components/ContentMedia.astro'
---

<DefaultLayout>
<div class="container">
<div id="center">
<h1>About</h1>
<p>
Alex's Guardian was started in 2015 by Alexander Henderson with the goal to make Infromation Technology (IT) work easier and transparent. IT work should never be complicated, or hidden behind bogus fees, for end users & businesses. You want someone to put YOU before profit.
</p>
</div>
<div>
<ContentMedia imgSrc="/about/map.webp" alt="Map picture of Lancaster County, PA">
<h2>Manheim, PA</h2>
<p class="text-normal">
Alex's Guardian is currently based, and primarily focused, in Manheim (Lancaster County, PA). Though, we have worked with clients out of the county/state. So do not let our primary focus discourage you from contacting us!
</p>
</ContentMedia>
<div id="blog-card">
<Card
url='https://blog.alexsguardian.net'
img="/about/alex-blog-card.webp"
title="Alex's Blog"
footer=""
>
Follow Alex and his adventures in his homelab.
</Card>
</div>

</div>
</div>

<style is:global>
#blog-card >div {
margin: auto;
}
</style>
</DefaultLayout>