GodUIGodUI
109Follow on X
Aria Wells

Aria Wells

Product Designer

Mateo Cruz

Mateo Cruz

Staff Engineer

Noah Kim

Noah Kim

Founder

Lena Park

Lena Park

Researcher

Swipe Deck

tsx
import { SwipeDeck } from "@/components/godui/swipe-deck";export function People() {return (  <SwipeDeck loop actions={{ left: "Pass", right: "Connect" }} onSwipe={(i, dir) => console.log(i, dir)}>    <ProfileCard name="Aria Wells" role="Product Designer" />    <ProfileCard name="Mateo Cruz" role="Staff Engineer" />    <ProfileCard name="Noah Kim" role="Founder" />  </SwipeDeck>);}