diff --git a/app/components/UserSection/UserSection.tsx b/app/components/UserSection/UserSection.tsx new file mode 100644 index 0000000..121f309 --- /dev/null +++ b/app/components/UserSection/UserSection.tsx @@ -0,0 +1,33 @@ +import { Avatar, Card } from "flowbite-react"; +import Link from "next/link"; + +export const UserSection = (props: { sectionTitle?: string; content: any }) => { + return ( + + {props.sectionTitle && ( + + + {props.sectionTitle} + + + )} + + + {props.content.map((user) => { + return ( + + + + + {user.login} + + + + ); + })} + {props.content.length == 1 && } + + + + ); +}; diff --git a/app/pages/Search.tsx b/app/pages/Search.tsx index a50757b..bded169 100644 --- a/app/pages/Search.tsx +++ b/app/pages/Search.tsx @@ -10,6 +10,7 @@ import { useSearchParams } from "next/navigation"; import { useUserStore } from "../store/auth"; import { Button, Dropdown, Modal } from "flowbite-react"; import { CollectionsSection } from "#/components/CollectionsSection/CollectionsSection"; +import { UserSection } from "#/components/UserSection/UserSection"; const fetcher = async (url: string) => { const res = await fetch(url); @@ -243,7 +244,10 @@ export function SearchPage() { content={content} /> ) : where == "profiles" ? ( - <>Not Implemented Yet> + ) : (