Components / Profile
Blob Profile
Free Profile React component — BlobProfileCard. MIT licensed, copy-paste ready for Next.js and Tailwind CSS.
Profile card with an organic blob-shaped photo frame, name, verified check, and handle. Stands out from every circular-avatar layout on the web.
Preview

Bidyut Kundu
@bidyut.dev
Setup
How to use
Free for personal and commercial use. No UI attribution required. Include the MIT copyright notice when copying component source into your project. Read the MIT license.
- 1
Run in your terminal:
$npm install clsx tailwind-merge lucide-react - 2
Copy
lib/cn.tsbelow. Skip if you already havecn(). - 3
Copy the code below and create
components/profile/blob-profile.tsxin your project. - 4
Import and render:
Exampleimport { BlobProfileCard } from "@/components/profile/blob-profile";
lib/cn.ts
import { type ClassValue, clsx } from "clsx";import { twMerge } from "tailwind-merge";export function cn(...inputs: ClassValue[]) {return twMerge(clsx(inputs));}
components/profile/blob-profile.tsx
"use client";import { forwardRef, type ComponentPropsWithoutRef } from "react";import Image from "next/image";import { cn } from "@/lib/cn";import { Check } from "lucide-react";// Blob-shaped profile card with verified badge — swap name, handle, and image via props.export type BlobProfileCardProps = Readonly<{// Display name on the profile card.name?: string;// Social handle shown below the name.handle?: string;// Profile image URL.image?: string;} & ComponentPropsWithoutRef<"div">>;export const BlobProfileCard = forwardRef<HTMLDivElement, BlobProfileCardProps>(({className,name = "Bidyut Kundu",handle = "@bidyut.dev",image = "/wallpaper-3.png",...props},ref,) => (<divref={ref}data-slot="blob-profile-card"className={cn("flex h-44 w-44 flex-col items-center justify-center rounded-3xl border border-neutral-100 bg-white p-4 font-sans shadow-lg",className,)}{...props}><divclassName="relative mb-3 h-24 w-24 overflow-hidden"style={{borderRadius: "60% 40% 55% 45% / 55% 45% 55% 45%",}}><Imagesrc={image}alt={name}fillclassName="object-cover"sizes="96px"/></div><p className="flex items-center gap-1 text-sm font-bold text-neutral-900">{name}<Check size={12} className="text-[#D9F26D]" aria-hidden /></p><p className="text-[11px] text-neutral-500">{handle}</p></div>),);BlobProfileCard.displayName = "BlobProfileCard";