Diagnoos

I designed the online medical care site for Diagnoose, focusing on creating an intuitive and accessible user experience. My work included crafting wireframes and prototypes, designing user-friendly interfaces for booking consultations and accessing health services, and building a clean design system to maintain consistency across the platform. I also collaborated with developers to ensure smooth implementation of the designs and usability for patients and doctors alike.

Client

Diagnoos

Service Provided

UI/UX Design

thumbnail Image
thumbnail Image
thumbnail Image

The Challenge:

Diagnoose needed an intuitive online medical care platform, but the existing design was cluttered and difficult to navigate. The challenge was to build a digital experience that felt simple, trustworthy, and accessible to patients and healthcare providers.

1

Image
Image

The Approach:

I focused on applying user-centered design principles, streamlining navigation, and creating a clean visual system. Wireframes and prototypes were tested to refine user flows and ensure the design supported both ease of use and professional credibility.

2

image one
image one

The Outcome

The redesigned interface offered a modern, accessible, and seamless user experience. It improved patient engagement, simplified doctor–patient interactions, and gave Diagnoose a strong, professional digital presence.

3

outcome image
outcome image

Let's Connect

Let's Grow Together

Web Design

Starting from $1,999

Showcasing sleek, high-performance designs tailored for impact

Framer Development

Starting from $4,999

Building visually stunning, user-focused websites that elevate brands.

Image banner

Let's Connect

Let's Grow Together

Web Design

Starting from $1,999

Showcasing sleek, high-performance designs tailored for impact

Framer Development

Starting from $4,999

Building visually stunning, user-focused websites that elevate brands.

Image banner

Let's Connect

Let's Grow Together

Web Design

Starting from $1,999

Showcasing sleek, high-performance designs tailored for impact

Framer Development

Starting from $4,999

Building visually stunning, user-focused websites that elevate brands.

Image banner

Create a free website with Framer, the website builder loved by startups, designers and agencies.

// Framer Link Control Script // Paste this code into your Framer project's custom code section (Head or Body) (function() { 'use strict'; // Route mapping for your domain const MAIN_DOMAIN = 'https://ihirwe.art'; const FRAMER_DOMAIN = 'https://ihirweui.framer.website'; // Function to convert Framer URLs to your domain URLs function convertToMainDomain(url) { if (url.startsWith(FRAMER_DOMAIN)) { return url.replace(FRAMER_DOMAIN, MAIN_DOMAIN); } return url; } // Function to notify parent window of navigation function notifyParentNavigation(path) { if (window.parent && window.parent !== window) { window.parent.postMessage({ type: 'framer-navigation', path: path }, MAIN_DOMAIN); } } // Override all link clicks document.addEventListener('click', function(e) { const link = e.target.closest('a'); if (link && link.href) { // Check if it's an internal Framer link if (link.href.startsWith(FRAMER_DOMAIN) || link.href.startsWith('/')) { e.preventDefault(); let targetPath = link.href; if (targetPath.startsWith(FRAMER_DOMAIN)) { targetPath = targetPath.replace(FRAMER_DOMAIN, ''); } // Navigate within the iframe window.location.href = FRAMER_DOMAIN + targetPath; // Notify parent to update URL notifyParentNavigation(targetPath); } // Let external links work normally } }, true); // Disable right-click context menu on links to prevent "Open in new tab" document.addEventListener('contextmenu', function(e) { const link = e.target.closest('a'); if (link && (link.href.startsWith(FRAMER_DOMAIN) || link.href.startsWith('/'))) { e.preventDefault(); // Optional: Show custom context menu or notification console.log('Right-click disabled on internal links to maintain domain consistency'); } }); // Override middle-click (wheel click) on links document.addEventListener('mousedown', function(e) { if (e.button === 1) { // Middle mouse button const link = e.target.closest('a'); if (link && (link.href.startsWith(FRAMER_DOMAIN) || link.href.startsWith('/'))) { e.preventDefault(); // Navigate normally instead of opening new tab let targetPath = link.href; if (targetPath.startsWith(FRAMER_DOMAIN)) { targetPath = targetPath.replace(FRAMER_DOMAIN, ''); } window.location.href = FRAMER_DOMAIN + targetPath; notifyParentNavigation(targetPath); } } }); // Disable keyboard shortcuts that could open links in new tabs document.addEventListener('keydown', function(e) { const link = document.activeElement; if (link && link.tagName === 'A' && (link.href.startsWith(FRAMER_DOMAIN) || link.href.startsWith('/'))) { // Disable Ctrl+Click, Cmd+Click, Ctrl+Enter, etc. if ((e.ctrlKey || e.metaKey) && (e.key === 'Enter' || e.type === 'click')) { e.preventDefault(); let targetPath = link.href; if (targetPath.startsWith(FRAMER_DOMAIN)) { targetPath = targetPath.replace(FRAMER_DOMAIN, ''); } window.location.href = FRAMER_DOMAIN + targetPath; notifyParentNavigation(targetPath); } } }); // Notify parent of current page on load window.addEventListener('load', function() { const currentPath = window.location.pathname; notifyParentNavigation(currentPath); }); console.log('Framer Link Control: Initialized successfully'); })();