Community

User profiles, team member cards, theme galleries, and community forms.

User Profile Card

Profile card with avatar, bio, stats, and action buttons.

Preview
AJ

Alice Johnson

@alice

Full-stack developer passionate about great UX.

San Francisco, CA

42

Posts

128

Followers

64

Following

User Profile Card.tsx
import { UserProfileCard } from "@launchapp/design-system/blocks/community";export default function Page() {  return (    <UserProfileCard      user={{ name: "Alice Johnson", username: "alice", bio: "Full-stack developer." }}      stats={[{ label: "Posts", value: 42 }, { label: "Followers", value: 128 }]}    />  );}

Team Member Card

Card displaying a team member's avatar, role, and social links.

Preview

No preview available

See the code snippet below for usage.

Team Member Card.tsx
import { TeamMemberCard } from "@launchapp/design-system/blocks/community";export default function Page() {  return (    <TeamMemberCard      name="Alice Johnson"      role="Engineering Lead"      bio="Builds fast, ships faster."    />  );}

Theme Submission Form

Form for submitting a community theme with name, colors, and preview.

Preview

No preview available

See the code snippet below for usage.

Theme Submission Form.tsx
import { ThemeSubmissionForm } from "@launchapp/design-system/blocks/community";export default function Page() {  return (    <ThemeSubmissionForm      onSubmit={(data) => console.log("submit", data)}    />  );}