Added analytics and updated some content.

This commit is contained in:
2024-11-13 07:53:46 -07:00
parent 92dcea5562
commit 309e5ceb2f
2 changed files with 9 additions and 6 deletions

View File

@@ -45,3 +45,6 @@ const { title, description, image = '/west-wing-sunrise.jpg' } = Astro.props;
<meta property="twitter:title" content={title} /> <meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} /> <meta property="twitter:description" content={description} />
<meta property="twitter:image" content={new URL(image, Astro.url)} /> <meta property="twitter:image" content={new URL(image, Astro.url)} />
<!-- Umami --->
<script is:inline src="https://cloud.umami.is/script.js" data-website-id="e7534182-fa03-41a0-8b35-07ff7f5d25e4"></script>

View File

@@ -3,6 +3,8 @@ import BaseHead from "../components/BaseHead.astro";
import Header from "../components/Header.astro"; import Header from "../components/Header.astro";
import Footer from "../components/Footer.astro"; import Footer from "../components/Footer.astro";
import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
import { Image } from "astro:assets";
import profilePic from "../../public/profile-pic.jpg";
--- ---
<!doctype html> <!doctype html>
@@ -15,9 +17,9 @@ import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
<main> <main>
<h1>Hello</h1> <h1>Hello</h1>
<article> <article>
<img <Image
src="/profile-pic.jpg" src={profilePic}
width="250px" width={250}
alt="A man with short, dark, wavy hair and a beard is looking at the camera. He is wearing a gray shirt and standing against a plain background." alt="A man with short, dark, wavy hair and a beard is looking at the camera. He is wearing a gray shirt and standing against a plain background."
/> />
<p> <p>
@@ -26,9 +28,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from "../consts";
I was in the US Air Force for a large portion of my life as I was in the US Air Force for a large portion of my life as
a Jet Engine Mechanic and have transitioned into Software a Jet Engine Mechanic and have transitioned into Software
Development after separating. I enjoy running, cycling, and Development after separating. I enjoy running, cycling, and
rock climbing as well as exploring technology. I am a rock climbing as well as exploring technology.
motivated lifelong learner and eager to share what I've
learned.
</p> </p>
</article> </article>
</main> </main>