diff --git a/bun.lockb b/bun.lockb index ea17d6f..57ab2fb 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 26f6695..3f1eab3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,12 +3,17 @@ import { useEffect, useState, forwardRef } from "react"; import { useSearchParams } from "next/navigation"; import Link from "next/link"; +import Image from "next/image"; import Repos from "./components/repos"; import Tippy from "@tippyjs/react"; import "tippy.js/dist/tippy.css"; import "./index.css"; -const TippyWrapper = forwardRef((props, ref) => ( +interface TippyWrapperProps extends React.AnchorHTMLAttributes { + children: React.ReactNode; +} + +const TippyWrapper = forwardRef((props, ref) => ( )); TippyWrapper.displayName = 'TippyWrapper'; @@ -56,7 +61,13 @@ export default function Home() { } }, [searchParams]); - const SocialLink = ({ href, icon, tooltip }: { href: string; icon: string; tooltip: string }) => ( + interface SocialLinkProps { + href: string; + icon: string; + tooltip: string; + } + + const SocialLink = ({ href, icon, tooltip }: SocialLinkProps) => (

/?no_hair

{/* /?no_ear */} - Profile + Profile