Skip to content

Commit

Permalink
feat: Add redio page
Browse files Browse the repository at this point in the history
  • Loading branch information
llccing committed Sep 14, 2024
1 parent f91afae commit 974d69c
Show file tree
Hide file tree
Showing 4 changed files with 266 additions and 371 deletions.
7 changes: 6 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Hr from "./Hr.astro";
import LinkButton from "./LinkButton.astro";
export interface Props {
activeNav?: "posts" | "tags" | "about" | "search";
activeNav?: "posts" | "tags" | "radio" | "about" | "search";
}
const { activeNav } = Astro.props;
Expand Down Expand Up @@ -65,6 +65,11 @@ const { activeNav } = Astro.props;
Tags
</a>
</li>
<li>
<a href="/radio/" class={activeNav === "radio" ? "active" : ""}>
Radio
</a>
</li>
<li>
<a href="/about/" class={activeNav === "about" ? "active" : ""}>
About
Expand Down
370 changes: 0 additions & 370 deletions src/content/blog/reading-the-house-on-mango-street.md

This file was deleted.

Loading

0 comments on commit 974d69c

Please sign in to comment.