Latest Updates

Documenting code, one commit at a time.

CSS HTML JavaScript

Adapting UI Components for Themeable Applications

This post delves into a practical approach for creating flexible UI components that seamlessly adapt to various themes within an application. We'll explore how to avoid hardcoded styles and instead leverage style variables to ensure consistent visual appearance across different themes.

The Problem: Hardcoded Styles

In many applications, UI components are initially developed with a specific

Read more

Streamlining User Onboarding: Integrating LinkedIn Login for Enhanced Recommendation Flows

Introduction

We've recently enhanced the user experience within our application by integrating LinkedIn login and registration, specifically aimed at simplifying the recommendation flow. This post details the changes and the reasoning behind them.

Key Improvements

Simplified Registration and Login

Previously, recommenders needed a GitHub account, which added friction to the process.

Read more
HTML CSS

Elevating Video Calls with Custom Background Assets

In today's remote work landscape, video calls have become a ubiquitous part of our daily routines. To enhance the visual appeal and branding consistency of our video meetings, we've introduced custom background assets.

The Need for Customization

Generic backgrounds can be distracting or lack a professional touch. By providing tailored background images, we aim to:

  • Reinforce brand
Read more
HTML JavaScript CSS

Simplifying User Onboarding: Consolidating CTAs into a Single Registration Button

In user interface design, a common challenge is guiding users towards key actions without overwhelming them with options. A recent update to our application's /earn page focused on streamlining the initial user experience by replacing multiple call-to-action (CTA) buttons with a single, unified registration button.

The Problem with Multiple CTAs

Having separate buttons for "Login" and

Read more

Fixing Placeholders in Our Application

Sometimes, during development, placeholder values can inadvertently slip into the final application. This post discusses how we addressed such an issue in our vlog index page, specifically focusing on unresolved :app_name placeholders.

The Problem: Unresolved Placeholders

Unresolved placeholders are problematic because they present a poor user experience and can sometimes expose internal

Read more

Enhancing Theme Preview Performance

Introduction

This post discusses recent improvements made to the theme preview functionality in our application. The focus was on optimizing the user experience by reducing the preview size and removing unnecessary UI elements.

Theme Preview Optimization

A key area of improvement was reducing the size of the theme preview. A smaller preview renders faster, especially on devices with

Read more

Enhancing User Experience: A Small Change with a Big Impact

Introduction

Recently, we made a seemingly small change to our application's navigation, specifically related to the 'Earn' link. This modification involved adding a '$' symbol to the link across all supported languages. While simple, this update reflects our ongoing commitment to improving clarity and user experience.

The Change: Adding the '$' Symbol

The core of the update involved

Read more

Enhancing User Experience: Interactive Theme Previews

Introduction

We aimed to enhance the user experience on our application's welcome page by replacing static theme links with an interactive, inline preview feature. This allows users to visualize theme changes directly without navigating to external sites.

The Challenge

Previously, users had to click on external links to preview different themes. This process was disruptive and

Read more

Enhancing Resource Management with Filament Relation Managers

Filament is a powerful tool for rapidly building admin panels. A common requirement is displaying related data directly within a resource's edit page. Let's explore how to use Filament's relation managers to achieve this, enhancing the user experience and data accessibility.

Displaying Related Data with Relation Managers

Relation managers in Filament provide an elegant way to display and

Read more