We Value Your Privacy

We use cookies and similar technologies to ensure the proper functioning of our website and its subdomains, enhance your browsing experience, provide personalized content, and analyze our traffic. By clicking ”Accept All,” you consent to the use of all cookies as described in our and . You can withdraw your consent at any time.

enmedd-logo

Design Digital Health Solutions with Quality, Safety and Security in mind. 

Developing digital health solutions demands a focus on quality, safety, and security. For developers, managing design elements across various healthcare applications can be challenging. Ensuring consistency while maintaining compliance is essential, whether you're working on medical software interfaces or broader digital health platforms.

Explore our Design SystemContact Us

We are still on the Beta-Phase and are currently looking for early adopters.

Report a Health Issue

What health area are you experiencing issues with?

CancelSubmit
David Dobratz
Male, 30 YrsDOB: Jan 22, 1990
PP Enrolled
Appointment Date & TimeAugust 26, 3:00 PM
camera-iconPatient Follow-up
Last VisitJuly 10, 2023Primary ConcernDiabetes ManagementMedicationsMetformin, LisinoprilAllergiesPeanuts

Healthcare Team

Invite your healthcare team members to collaborate on patient care.

Dr. Sofia Davisdr.sofia@sample.com
Dr. Jackson Leedr.jackson@sample.com

Settings

Manage Your Preferences

Essential ServicesNecessary for accessing healthcare services and secure features.
PersonalizationEnhances your experience by remembering preferences and providing personalized health recommendations.
Performance ImprovementHelps us improve our website by collecting anonymous usage data.
Save preferences

Create an account

Enter your email below to create your account

GithubGoogle
OR CONTINUE WITH
Create account

Your Activity

step-iconSteps Today 8400 steps
target-iconTarget Steps10,000 steps
calories-iconCalories Burned725 kcal
distance-iconDistance5.2 km
View DetailsTrack Activity
WhybuildwithenMedDDesignSystem?
Safe,Secure,Seamless.

by ensuring robust protection of patient data, adhering to stringent regulatory standards, and delivering an intuitive user experience that integrates smoothly with existing healthcare workflows.

iconSafe
  • 1. Intuitive Design: Simplifies complex processes, reducing the likelihood of user errors that could compromise patient safety.

  • 2. Clear Feedback: Provides immediate and understandable feedback for user actions, helping to prevent mistakes and guide correct usage.

  • 3. Error Prevention: Incorporates checks and balances, such as confirmation prompts and validation rules, to avoid common user errors.

iconSecure
  • 1. User-Friendly Authentication: Implements efficient yet robust authentication methods that do not frustrate users but ensure secure access.

  • 2. Consistent Navigation: Maintains uniform design elements and workflows across the system, helping users to reliably navigate and use the system securely.

  • 3. Visual Cues for Security: Uses clear visual indicators (like padlock icons) to signify secure areas, reassuring users that their data is protected.

iconSeamless
  • 1. Streamlined Workflows: Designs processes that align with the natural workflow of healthcare professionals, minimizing disruptions and enhancing efficiency.

  • 2. Consistent User Interface: Uses uniform design elements across different modules to create a cohesive user experience, reducing the learning curve.

  • 3. Smooth Integration: Ensures compatibility with other healthcare systems and tools, facilitating easy data sharing and comprehensive care delivery.

Allthefeatures,noneoftheheadaches.

Payment Method

Add a new payment method to your account.

Paypal paypal-icon
Card card-icon
Apple apple-icon
Continue
import dynamic from "next/dynamic";
import appleIcon from "../../assets/homepage/apple.svg";
import cardIcon from "../../assets/homepage/card.svg";
import paypalIcon from "../../assets/homepage/paypal.svg";
import Image from "next/image";

  const EnmeddCard = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddCard),
    { ssr: false }
  );
  const EnmeddCardHeader = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddCardHeader),
    { ssr: false }
  );
  const EnmeddCardContent = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddCardContent),
    { ssr: false }
  );
  const EnmeddCardFooter = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddCardFooter),
    { ssr: false }
  );
  const EnmeddInput = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddInput),
    { ssr: false }
  );
  const EnmeddCombobox = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddCombobox),
    { ssr: false }
  );
  const EnmeddComboboxItem = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddComboboxItem),
    { ssr: false }
  );
  const EnmeddButton = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddButton),
    { ssr: false }
  );
  const EnmeddCheckbox = dynamic(
    () => import("ervin-tester").then((mod) => mod.EnmeddCheckbox),
    { ssr: false }
  );

export default function SampleComponent() {
  return (
    <EnmeddCard width="450px">
      <EnmeddCardHeader>
        <h3 className="text-xl font-semibold">Payment Method</h3>
        <p className="text-sm text-[rgba(14,_14,_15,_0.7)]">
          Add a new payment method to your account.
        </p>
      </EnmeddCardHeader>
      <EnmeddCardContent>
        <div className="flex gap-4">
          <div className="w-full p-2 text-sm border border-gray-200 rounded-md hover:bg-gray-50">
            <div className="flex flex-col items-center gap-1.5 cursor-pointer">
              Paypal <Image width={24} src={paypalIcon} alt="paypal-icon" />
            </div>
          </div>
          <div className="w-full p-2 text-sm border border-gray-200 rounded-md hover:bg-gray-50">
            <div className="flex flex-col items-center gap-1.5 cursor-pointer">
              Card <Image width={24} src={cardIcon} alt="card-icon" />
            </div>
          </div>
          <div className="w-full p-2 text-sm border border-gray-200 rounded-md hover:bg-gray-50">
            <div className="flex flex-col items-center gap-1.5 cursor-pointer">
              Apple <Image width={24} src={appleIcon} alt="apple-icon" />
            </div>
          </div>
        </div>

        <EnmeddInput label="Name" placeholder="First Last" />
        <EnmeddInput label="Card Number" />
        <div className="flex gap-3 pt-1">
          <EnmeddCombobox fullWidth placeholder="Month" label="Month">
            <EnmeddComboboxItem>January</EnmeddComboboxItem>
            <EnmeddComboboxItem>February</EnmeddComboboxItem>
            <EnmeddComboboxItem>March</EnmeddComboboxItem>
            <EnmeddComboboxItem>April</EnmeddComboboxItem>
            <EnmeddComboboxItem>May</EnmeddComboboxItem>
            <EnmeddComboboxItem>June</EnmeddComboboxItem>
            <EnmeddComboboxItem>July</EnmeddComboboxItem>
            <EnmeddComboboxItem>August</EnmeddComboboxItem>
            <EnmeddComboboxItem>September</EnmeddComboboxItem>
            <EnmeddComboboxItem>October</EnmeddComboboxItem>
            <EnmeddComboboxItem>November</EnmeddComboboxItem>
            <EnmeddComboboxItem>December</EnmeddComboboxItem>
          </EnmeddCombobox>
          <EnmeddCombobox fullWidth placeholder="Year" label="Year">
            <EnmeddComboboxItem>2022</EnmeddComboboxItem>
            <EnmeddComboboxItem>2023</EnmeddComboboxItem>
            <EnmeddComboboxItem>2024</EnmeddComboboxItem>
            <EnmeddComboboxItem>2025</EnmeddComboboxItem>
            <EnmeddComboboxItem>2026</EnmeddComboboxItem>
            <EnmeddComboboxItem>2027</EnmeddComboboxItem>
            <EnmeddComboboxItem>2028</EnmeddComboboxItem>
            <EnmeddComboboxItem>2029</EnmeddComboboxItem>
            <EnmeddComboboxItem>2030</EnmeddComboboxItem>
            <EnmeddComboboxItem>2031</EnmeddComboboxItem>
          </EnmeddCombobox>
          <EnmeddInput label="CVC" placeholder="CVC" />
        </div>

        <div className="flex items-center mt-3">
          <EnmeddCheckbox />
          <label
            htmlFor="termsAgreement"
            className="ml-2 block text-sm text-[rgba(14,_14,_15,_0.7)]"
          >
            I agree to the{" "}
            <span className="text-blue-600 cursor-pointer">
              Terms and Conditions.
            </span>
          </label>
        </div>
      </EnmeddCardContent>
      <EnmeddCardFooter>
        <EnmeddButton fullWidth>Continue</EnmeddButton>
      </EnmeddCardFooter>
    </EnmeddCard>
  );
}
WeareaSMALLteam
ButwithaBIGdesiretoimpactpatientlives

It makes us agile, safe, secure, and seamless. We quickly implement new features while ensuring top-notch quality and protection.

Founded in Vienna, Austria, we're a remote business committed to a five-day work week and a zero-stress policy (yes, it's possible!)."

icon
Mitigate risk to Patient Life and Reduce Medical Errors

The enMedD Design System prioritizes patient safety by focusing on features that reduce medical errors and mortality. User interfaces are designed to minimize human error with clear guides, alerts, and fail-safes for critical care.

icon
Primary Focus: Patient Safety and Quality of Care

The enMedD Design System prioritizes patient safety. Clear interfaces, error prevention, and fast access to critical functions ensure well-being. Robust security protects patient data.

icon
Secondary Focus: Healthcare Professional Support

The enMedD Design System empowers healthcare professionals with accurate tools and clear guides to reduce errors and improve patient outcomes.

ElevateyourDigitalHealthExperience

Prioritize safety, security, and seamlessness by adopting our design system today!

Explore our Design System
logo
Gerasdorfer Straße 61/4/21210 Vienna, AustriaVAT-ID: ATU77295909
twitter-logogithub-logolinkedin-logo