Community
User profiles, team member cards, theme galleries, and community forms.
User Profile Card
Profile card with avatar, bio, stats, and action buttons.
Alice Johnson
@aliceFull-stack developer passionate about great UX.
42
Posts
128
Followers
64
Following
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.
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." /> );}Community Themes Gallery
Grid gallery of community-submitted themes with preview and like actions.
Community Themes Gallery
Explore and use themes created by the LaunchApp community
Filter by category
All Themes
7 themes available
Dracula
by Dracula Theme Community
A dark theme inspired by the popular Dracula color scheme
Nord
by Nord Theme
An arctic, north-bluish color palette for a fresh, cold aesthetic
Gruvbox
by Gruvbox Theme
Retro groove color scheme with warm earthy tones
Catppuccin Mocha
by Catppuccin Community
Soothing pastel theme with a soft, warm aesthetic inspired by Catppuccin
One Dark Pro
by One Dark Theme Community
A refined dark theme with blue-tinted colors, inspired by Atom's One Dark
Solarized
by Ethan Schoonover
Precision colors for machines and people. A carefully balanced color palette for light and dark modes.
Monokai
by Wimer Hazenberg
A vibrant dark theme with bright accent colors. Inspired by the popular Monokai color scheme.
Community Themes Gallery
Explore and use themes created by the LaunchApp community
Filter by category
All Themes
7 themes available
Dracula
by Dracula Theme Community
A dark theme inspired by the popular Dracula color scheme
Nord
by Nord Theme
An arctic, north-bluish color palette for a fresh, cold aesthetic
Gruvbox
by Gruvbox Theme
Retro groove color scheme with warm earthy tones
Catppuccin Mocha
by Catppuccin Community
Soothing pastel theme with a soft, warm aesthetic inspired by Catppuccin
One Dark Pro
by One Dark Theme Community
A refined dark theme with blue-tinted colors, inspired by Atom's One Dark
Solarized
by Ethan Schoonover
Precision colors for machines and people. A carefully balanced color palette for light and dark modes.
Monokai
by Wimer Hazenberg
A vibrant dark theme with bright accent colors. Inspired by the popular Monokai color scheme.
Community Themes Gallery
Explore and use themes created by the LaunchApp community
Filter by category
All Themes
7 themes available
Dracula
by Dracula Theme Community
A dark theme inspired by the popular Dracula color scheme
Nord
by Nord Theme
An arctic, north-bluish color palette for a fresh, cold aesthetic
Gruvbox
by Gruvbox Theme
Retro groove color scheme with warm earthy tones
Catppuccin Mocha
by Catppuccin Community
Soothing pastel theme with a soft, warm aesthetic inspired by Catppuccin
One Dark Pro
by One Dark Theme Community
A refined dark theme with blue-tinted colors, inspired by Atom's One Dark
Solarized
by Ethan Schoonover
Precision colors for machines and people. A carefully balanced color palette for light and dark modes.
Monokai
by Wimer Hazenberg
A vibrant dark theme with bright accent colors. Inspired by the popular Monokai color scheme.
import { CommunityThemesGallery } from "@launchapp/design-system/blocks/community";const themes = [ { id: "1", name: "Midnight Blue", author: "Alice", likes: 42, previewColors: ["#0f172a", "#1e40af", "#3b82f6"] }, { id: "2", name: "Forest Green", author: "Bob", likes: 28, previewColors: ["#14532d", "#16a34a", "#4ade80"] },];export default function Page() { return <CommunityThemesGallery themes={themes} onLike={(id) => console.log("like", id)} />;}Theme Submission Form
Form for submitting a community theme with name, colors, and preview.
Submit a Community Theme
Create and submit a custom color theme for the LaunchApp design system
import { ThemeSubmissionForm } from "@launchapp/design-system/blocks/community";export default function Page() { return ( <ThemeSubmissionForm onSubmit={(data) => console.log("submit", data)} /> );}User Profile Header
Profile header with cover image, avatar, bio, stats, and follow/action buttons.
Alice Johnson
@alice_jEngineering Lead
Building great products at the intersection of design and engineering. Open source enthusiast.
import { UserProfileHeader } from "@launchapp/design-system/blocks/profile";export default function Page() { return ( <UserProfileHeader user={{ name: "Alice Johnson", username: "alice", role: "Senior Frontend Engineer", bio: "Passionate about building accessible, beautiful user interfaces.", location: "San Francisco, CA", website: "alice.dev", joinedDate: "January 2023", isVerified: true, initials: "AJ", }} stats={[ { label: "Projects", value: 42 }, { label: "Followers", value: 1280 }, { label: "Following", value: 96 }, ]} onFollow={() => console.log("follow")} /> );}Profile Card
Compact profile card with social links, tags, and edit/message actions.
Passionate about building accessible, beautiful user interfaces. Open source contributor and design systems enthusiast.
import { UserProfileCard } from "@launchapp/design-system/blocks/profile";export default function Page() { return ( <UserProfileCard name="Alice Johnson" role="Senior Frontend Engineer" email="alice@example.com" bio="Passionate about building accessible, beautiful user interfaces. Open source contributor and design systems enthusiast." location="San Francisco, CA" website="https://alice.dev" tags={["React", "TypeScript", "Design Systems", "a11y"]} socialLinks={[ { platform: "twitter", url: "https://twitter.com/alice", label: "Twitter" }, { platform: "github", url: "https://github.com/alice", label: "GitHub" }, { platform: "linkedin", url: "https://linkedin.com/in/alice", label: "LinkedIn" }, ]} onMessage={() => console.log("message")} onEdit={() => console.log("edit")} /> );}