Skip to content

Commit

Permalink
Updating for my personal info
Browse files Browse the repository at this point in the history
  • Loading branch information
NickHodges committed Mar 31, 2024
1 parent 25cd513 commit f4d4932
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,21 @@ Astro Cactus is a simple opinionated starter built with the Astro framework. Use

## Table Of Contents

1. [Key Features](#key-features)
2. [Demo](#demo-💻)
3. [Quick start](#quick-start)
4. [Preview](#preview)
5. [Commands](#commands)
6. [Configure](#configure)
7. [Adding Posts](#adding-posts)
- [Frontmatter](#frontmatter)
- [Frontmatter Snippet](#frontmatter-snippet)
8. [Pagefind search](#pagefind-search)
9. [Analytics](#analytics)
10. [Deploy](#deploy)
11. [Acknowledgment](#acknowledgment)
- [Table Of Contents](#table-of-contents)
- [Key Features](#key-features)
- [Demo 💻](#demo-)
- [Quick start](#quick-start)
- [Preview](#preview)
- [Commands](#commands)
- [Configure](#configure)
- [Adding posts](#adding-posts)
- [Frontmatter](#frontmatter)
- [Frontmatter snippet](#frontmatter-snippet)
- [Pagefind search](#pagefind-search)
- [Analytics](#analytics)
- [Deploy](#deploy)
- [Acknowledgment](#acknowledgment)
- [License](#license)

## Key Features

Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const year = new Date().getFullYear();
>
<div class="me-0 sm:me-4">
&copy; {siteConfig.author}
{year}.<span class="inline-block">&nbsp;🚀&nbsp;Astro Cactus</span>
{year}.<span class="inline-block">&nbsp;🚀&nbsp;siteConfig.title</span>
</div>
<nav
aria-label="More on this site"
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/Header.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { menuLinks } from "@/site-config";
import { menuLinks, siteConfig } from "@/site-config";
import Search from "../Search.astro";
import ThemeToggle from "../ThemeToggle.astro";
Expand Down Expand Up @@ -34,7 +34,7 @@ const url = new URL(Astro.request.url);
fill="#53C68C"></path>
<path d="M45.334 240 0 213.334v120L45.334 360V240Z" fill="#B04304"></path>
</svg>
<span class="text-xl font-bold sm:text-2xl">Astro Cactus</span>
<span class="text-xl font-bold sm:text-2xl">{siteConfig.title}</span>
</a>
<nav
aria-label="Main menu"
Expand Down
4 changes: 2 additions & 2 deletions src/site.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export const siteConfig: SiteConfig = {
// Used as both a meta property (src/components/BaseHead.astro L:31 + L:49) & the generated satori png (src/pages/og-image/[slug].png.ts)
author: "Nick Hodges",
// Meta property used to construct the meta title property, found in src/components/BaseHead.astro L:11
title: "Astro Theme Cactus",
title: "Nick Hodges",
// Meta property used as the default description meta property
description: "An opinionated starter theme for Astro",
description: "The Personal Website of Nick Hodges",
// HTML lang property, found in src/layouts/Base.astro L:18
lang: "en-US",
// Meta property, found in src/components/BaseHead.astro L:42
Expand Down

0 comments on commit f4d4932

Please sign in to comment.