Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHomanics committed May 22, 2024
1 parent 16b3c1a commit d88768a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,12 @@ const Home: NextPage = () => {
linkedinUrl="https://www.linkedin.com/in/noreensullivan/"
/>

<PfpCard name="Benny" image={benny} />
<PfpCard
name="Benny"
image={benny}
twitterUrl="https://twitter.com/tenacioustoys"
instagramUrl="https://instagram.com/tenacioustoys"
/>
</div>

<div className="flex justify-center items-center gap-2 mb-4 mt-10">
Expand Down
20 changes: 20 additions & 0 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import {
} from "@heroicons/react/24/outline";
import { FaucetButton, RainbowKitCustomConnectButton } from "~~/components/scaffold-eth";
import { useOutsideClick } from "~~/hooks/scaffold-eth";
import fc from "~~/public/social-icons/farcaster.png";
import ig from "~~/public/social-icons/instagram.png";
import twitter from "~~/public/social-icons/x.png";

type HeaderMenuLink = {
label: string;
Expand Down Expand Up @@ -99,6 +102,23 @@ export const Header = () => {
<span className="text-xs">The cheesiest ones in town!</span>
</div>
</Link>

<div className="flex space-x-1 ml-5">
<Link href="https://twitter.com/Nounies1">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img src={twitter.src} alt="x" className="w-7 lg:w-10" />
</Link>

<Link href="https://warpcast.com/~/channel/weedies">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img src={fc.src} alt="fc" className="w-7 lg:w-10" />
</Link>
<Link href="https://www.instagram.com/bigshottoyworks/">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img src={ig.src} alt="ig" className="w-7 lg:w-10" />
</Link>
</div>

<ul className="hidden lg:flex lg:flex-nowrap menu menu-horizontal px-1 gap-2">
<HeaderMenuLinks />
</ul>
Expand Down

0 comments on commit d88768a

Please sign in to comment.