Sinc Web UI Redesign

I worked on redesigning the web interface of Sinc, focusing on improving usability, consistency, and visual appeal. The redesign aimed to modernize the platform while keeping it intuitive for users. My contributions included:

  • UI/UX Audit – Analyzed the existing interface to identify usability gaps and design inconsistencies.

  • Redesign Execution – Crafted a clean, user-friendly layout with improved navigation and component hierarchy.

  • Responsive Design – Ensured seamless adaptability across desktop, tablet, and mobile devices.

  • Visual Consistency – Introduced a refined color palette, typography system, and component styling for a cohesive brand identity.

  • Prototype & Testing – Created interactive prototypes to test user flows and refine the design based on feedback.

The result was a modern, accessible, and engaging interface that enhanced user experience while aligning with Sinc’s brand identity.

Client

Design Challenge by Sinc

Service Provided

Web Redesign

thumbnail Image
thumbnail Image
thumbnail Image

The Goal:

To create a more engaging and straightforward user experience (UX) by using innovative and creative design approaches that make the platform intuitive and enjoyable for all users.

1

Image
Image

The Challenge:

The original Sinc web interface faced issues with complex navigation, inconsistent design elements, and limited responsiveness, which made it difficult for users to interact efficiently. Users often struggled to find features quickly, and the overall experience lacked visual cohesion, engagement, and accessibility.

2

Older UI
Older UI

The Result

In conclusion, The redesign successfully transformed Sinc into a modern, user-centered platform that balances aesthetics with functionality. By streamlining workflows, enhancing visual consistency, and prioritizing accessibility, the new interface delivers a more intuitive, engaging, and seamless experience across all devices. This project demonstrates how thoughtful design can elevate user satisfaction and drive meaningful interactions.

3

improved UI
improved UI

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'); })();