React applications often require navigation between different components and pages. The useHistory hook, provided by React Router, simplifies navigation by providing access to the browser’s history object. In this blog, we’ll explore the useHistory hook, understand its implementation, and see practical examples of how it enhances navigation in React applications. Understanding useHistory The useHistory hook […]
Innovation and Product Development
Four Key Takeaways from TrailblazerDX
Last week, I attended TrailblazerDX in San Francisco, where the content was all about Salesforce Data Cloud and AI! There were over 300 sessions to attend, from technical talks to hands-on workshops where attendees could learn how to build copilots and how to use the latest Salesforce platform features directly from product managers, architects, and […]
Next.js Font & Image Optimization Guide
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> </> […]
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 […]
Finding Your Way in React: Exploring useLocation and useParams.
React provides powerful tools for creating dynamic web apps. The two most important hooks for dealing with routing and URLs are useLocation and useParams. In this blog post, we’ll explore these hooks’ functionality, discuss their application with examples, and show you how to combine them to give your React projects smooth navigation. Understanding useLocation The […]
Implementing Email Functionality with Nodemailer in Node.js
In the contemporary digital landscape, the automated transmission of emails has become an integral aspect of web application development. Be it for dispatching notifications, distributing newsletters, or executing password resets, the integration of email functionality into Node.js applications holds significant importance. Thankfully, Node.js provides Nodemailer, an efficient library that enhances the email-sending experience. This tutorial […]
User Acceptance Testing Execution Tips for Websites and Portals
User Acceptance Testing (UAT) is the final stage before launching new functionality. What should be an exciting time can turn to frustration and exhaustion. Over the years, I have found tactics that can improve the UAT outcome. UAT involves key business stakeholders validating the system prior to go-live. My background is primarily around website and […]
Fetching and Editing Renderings Information for Versioned Items With PowerShell
While working on a project, I encountered a scenario wherein I had to list all the items with particular renderings along with the versions of page items. I also had to update the rendering in presentation details for all the versions. This was a bulk update. I decided to write a PowerShell script for this […]
Enhancing TypeScript Code with Generics
In this blog, we will explore generics in TypeScript, but before diving into generics, let’s first understand what TypeScript is and why TypeScript has become increasingly popular in the software development industry. So, what is TypeScript? TypeScript, as a free and open-source high-level programming language, acts as a superset of JavaScript by introducing features like […]
AI (Artificial Intelligence) Powered Product People
AI (Artificial Intelligence) Powered Product People Have you ever wondered how artificial intelligence can transform not only our lives but also our professions? As someone passionate about technology and digital product development, I have always been intrigued by new tools and how they can improve our lives and careers. In recent times, artificial intelligence (AI) […]
10 Ways Agile Supports Product-Driven Healthcare
The shift from a project to a product mindset is particularly relevant for health insurers and healthcare providers as they aim to enhance their agility, responsiveness, and consumer-centric focus. Agile methodologies play a crucial role in facilitating and supporting this transition in the healthcare industry. Agile’s role in product-driven healthcare Continuous Improvement in Healthcare Services: […]
How to Use the Personalization Connector for Salesforce Sales and Service Clouds
Have you ever wondered what happens if you connected Personalization with Sales and Service Clouds? The Personalization connector for Sales and Service Clouds exposes user data and server-side campaigns in Salesforce CRM for your contacts and leads. ✋ The Key for Success To use Personalization for Sales and Service Clouds, you’ll need to have: User […]