Skip to content

Commit

Permalink
changed home to switchboard
Browse files Browse the repository at this point in the history
  • Loading branch information
aryonoco committed Oct 29, 2024
1 parent 89df7b5 commit 89128f2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions src/assets/socialIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,19 @@ const socialIcons = {
<path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7"></path>
<path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6"></path>
</svg>`,
Switchboard: `<svg
xmlns="http://www.w3.org/2000/svg"
class="icon-tabler"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<rect x="4" y="3" width="16" height="18" rx="1"></rect>
<circle cx="9" cy="8" r="1.5"></circle>
<circle cx="15" cy="8" r="1.5"></circle>
<circle cx="9" cy="16" r="1.5"></circle>
<circle cx="15" cy="16" r="1.5"></circle>
</svg>`,
};

export default socialIcons;
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const { activeNav } = Astro.props;
</button>
<ul id="menu-items" class="display-none sm:flex">
<li>
<a href="https://ameri.coffee"> Home </a>
<a href="https://ameri.coffee"> Switchboard </a>
</li>
<li>
<a href="/posts/" class={activeNav === "posts" ? "active" : ""}>
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export const LOGO_IMAGE = {

export const SOCIALS: SocialObjects = [
{
name: "Home",
name: "Switchboard",
href: "https://ameri.coffee",
linkTitle: `Home`,
linkTitle: `Switchboard`,
active: true,
},
{
Expand Down

0 comments on commit 89128f2

Please sign in to comment.