Optimizing Fonts Explaining How to Optimize Fonts in a Next.js Application //Path: src/app/Card/page.js import { Poppins } from “next/font/google”; const poppins = Poppins({ subsets: [“latin”], weight: [‘100’, ‘200’, ‘300’, ‘400’, ‘500’, ‘600’, ‘700’, ‘800’, ‘900’] }); const page = () => { return ( <> <h1 className={poppins.className}>Poppins Font Styling</h1> <p>this is paragraph</p> <button>Click me</button> </> […]
Customer Experience + Design
Styling Excellence: Mastering Next.js for Stunning UIs
In web development, making interfaces look good is vital. Next.js, a popular React framework, requires mastering styling techniques for excellence. In this blog, we’ll delve into the world of styling in Next.js, focusing on importing global styles, adding styles at the component level, harnessing SASS support, and utilizing CSS-in-JS. Global Styles Simply import global styles […]
The Event-Driven Data Layer: Unifying Analytics and Development Teams
One common way of implementing tags through Adobe Launch is using a data layer, which is a JSON object (key/value pair) that is loaded onto the page from which attributes are passed through as the user navigates through the website or completes certain objectives. This can be extended further into using an Event-Driven Data Layer […]
Decoding the Barriers to EV Adoption Over Coffee: Our Event Highlights
Did you miss our event or need a refresh? Watch a recap of Lisa Sherwood’s presentation at our Electric Cars + Coffee virtual event! On February 16, I had the opportunity to join my colleagues Lisa Sherwood and Kevin Espinosa in hosting our “Electric Cars and Coffee” virtual event. The event brought together our […]
Creating Universal Design Experiences: The Power of Intuitive Mobile App Design
In the digital age, where mobile apps have become an integral part of our daily lives, ensuring accessibility for everyone is paramount. Designing mobile apps with simplicity and intuitiveness in mind goes a long way in creating inclusive experiences. In this blog post, we’ll explore the importance of intuitive mobile app design and delve into […]
Clear Signage in Public Spaces: Designing for Universal Accessibility
In the realm of universal design and accessibility, clear signage in public spaces plays a pivotal role in ensuring that everyone can navigate and access facilities effortlessly. Whether it’s a bustling transportation hub, a public building, or a recreational space, implementing simple and intuitive design principles for signage benefits everyone, regardless of their abilities. Let’s […]
Achieving New Heights in Healthcare Marketing With Salesforce Marketing Cloud Personalization
In December 2022, the Department of Health and Human Services released a bulletin announcing additional compliance requirements for healthcare marketers when it comes to third-party trackers. The guidance lays forth expectations for how healthcare organizations collect data on activities that take place on their website and mobile apps. So, what’s the problem? Per the […]
Maintaining Your Adobe Launch Implementation
Adobe Launch is a valuable tool to help you manage the tags placed across your website, including Facebook, Pinterest, and Bing pixels as well as Adobe Analytics and Target depending on your property. Many of these tags are either deployed via custom code or via one of the many extensions within Launch’s extension to help […]
Mastering Advanced Features and Techniques of JEST React Testing Library
Welcome to a deeper journey into the JEST React Testing Library world! We’ll explore advanced methods and tricks that enhance your testing expertise here. If you’re new to JEST, don’t worry! We’ve got you covered with “Exploring JEST React Testing Library: A Complete Overview,” which helps you understand basic and advanced insights, ensuring a comprehensive […]
Navigating Snaplogic Integration: A Beginner’s Guide
As there is rapid growth in businesses going digital, the need to develop scalable and reliable functionalities to connect applications, Cloud environments, on-premises assets have grown. To resolve these complex scenarios, iPaaS seems to be a perfect solution. For example, if a developer needs to connect and transfer huge data from an e-commerce platform to […]
ES6 Deep Dive: Unlocking Advanced JavaScript Features
Introduction JavaScript saw a revolution with the release of ES6, which added state-of-the-art features that increased its potential. In this blog, we’ll explore these advanced JavaScript ES6 features, illuminate their subtleties, and showcase how they enable developers to produce more effective, expressive, and manageable code. Developers can confidently and skilfully handle the difficulties of current […]
Mastering the Art of Functional JavaScript: Immutability, Pure Functions, and Beyond
Welcome to the world of JavaScript functional programming! In this blog, we’ll explore the fundamental principles that make functional programming an effective technique for creating clear, effective, and manageable code. In our discussion, we will delve into essential concepts. Firstly, we will explore immutability, denoting the inability to change a function once it has been […]