CardProfile (Profile Card Component)

This section previews the CardProfile component.

In this guide, we showcase the CardProfile component, designed to display a user profile with an image, title, subtitle, description, and two action buttons.

Preview

Animated Image

Emily Brooks

Senior Full Stack Engineer

Building robust and powerful, scalable applications with a strong focus on delivering seamless user experiences.

Code

import "@elizabthpazp/intera-ui/dist/globals.css";
import { CardProfile } from "@elizabthpazp/intera-ui";

export default function Home() {  
  const handleClick = () => { 
    console.log("Button Clicked");
  }; 

  return ( 
   <CardProfile onClickOne={handleClick} title={Emily Brooks} />   
  );
}

Component Details

The CardProfile component consists of:

  • A profile image displayed at the top.
  • A title representing the name or main heading.
  • A subtitle for additional details such as job title or role.
  • A description section for a short bio or relevant information.
  • Two action buttons that can trigger different events.

Props

The CardProfile component accepts several props that allow customization of its behavior and appearance:

Prop NameTypeDescription
darkModebooleanEnables dark mode styling if true.
imagestringURL for the profile image.
titlestringMain title displayed on the card.
subtitlestringSubtitle displayed below the title.
descriptionstringShort description or bio.
buttonLeftLabelstringLabel for the first action button.
buttonRightLabelstringLabel for the second action button.
onClickLeftfunctionFunction triggered when the first button is clicked.
onClickRightfunctionFunction triggered when the second button is clicked.

These props allow full customization of the component, making it flexible for different UI requirements.

Features

  • Supports both light and dark mode.
  • Uses Tailwind CSS for consistent styling.
  • Customizable buttons for different interactions.
  • Responsive design for various screen sizes.

This component enhances user interaction by presenting a clean and interactive profile display.