Skip to content

Commit

Permalink
tweak menu, add shopping / playlist link, add youtube, fix logo trans…
Browse files Browse the repository at this point in the history
…form, add FeaturedSnippet
  • Loading branch information
aaronsmulktis committed May 31, 2024
1 parent 09803c8 commit cd70067
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
12 changes: 6 additions & 6 deletions components/FeaturedSnippet/FeaturedSnippet.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";

export const FeaturedSnippet = () => {
return (
<div>
<h1>FeaturedSnippet</h1>
</div>
);
}
return (
<div>
<h1>FeaturedSnippet</h1>
</div>
);
};
2 changes: 1 addition & 1 deletion components/FeaturedSnippet/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { FeaturedSnippet } from './FeaturedSnippet';
export { FeaturedSnippet } from "./FeaturedSnippet";
12 changes: 10 additions & 2 deletions components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,18 @@ export const Header: React.FC<HeaderProps> = ({ darkMode }) => {

<RightSide>
<HeaderOptions>
<LinkDiv href="https://open.spotify.com/playlist/3T8xxIMFx8OsL8osiY02Wj?si=78c4db2339b14c57" isActive={pathname !== "/login"} target="_blank">
<LinkDiv
href="https://open.spotify.com/playlist/3T8xxIMFx8OsL8osiY02Wj?si=78c4db2339b14c57"
isActive={pathname !== "/login"}
target="_blank"
>
PLAYLIST
</LinkDiv>
<LinkDiv href="https://smokey.threadless.com" isActive={pathname !== "/login"} target="_blank">
<LinkDiv
href="https://smokey.threadless.com"
isActive={pathname !== "/login"}
target="_blank"
>
SHOP
</LinkDiv>
</HeaderOptions>
Expand Down

0 comments on commit cd70067

Please sign in to comment.