An involved project that completes a rebrand of Roos International, updating its layout and structure to enhance user experience, with the mobile web-app being a unique feature.
Roos International is the Material's Candy Store.
For over 30 years, Roos International has been a trusted source of design inspiration within the A&D (Architecture & Design) community. This extensive expertise caters to architects, interior designers, contractors, and architectural millwork trades, making them the premier destination for exclusive, cutting-edge surfacing materials for both interior and exterior applications.
With their creative materials, they enable the realization of award-winning projects. Their showroom proudly showcases an extensive collection of interior surface solutions, ranging from exquisite wallcoverings to stunning wall panels. With their diverse range of options, they provide comprehensive solutions for all interior designer needs. Roos International Showroom is To The Trade Only.
This project has long been a focus on how to best deliver the vast amount of content to the industry. The approach was based on inspiration from other businesses such as Crate & Barrel and Williams Sonoma, as well as main competitors like Soelberg. The focus on A/B testing, usability testing and concept testing has made it possible to design a web app that mimics a native application which has made it significantly easier for clients in this industry to closely examine the product selections they have to offer.
Roos International Showroom is To The Trade Only.
Roos International has been a go-to destination for interior designers, architects, millworkers, and contractors for over 30 years, often described as the "materials candy store" due to its carefully curated selection of high-end architectural materials. The company’s main value proposition has always been providing a pure, exclusive selection of materials that clients can confidently choose for their design projects.
However, despite its industry reputation and curated approach, Roos International’s digital presence did not reflect the same level of refinement, exclusivity, and sophistication that its physical experience provided. The website was outdated, lacking modern UX and UI trends, and did not convey the premium quality of its offerings. Instead of feeling like an elite design destination, the online platform failed to communicate the essence of Roos International’s brand—one that should mirror the aesthetic and functionality of high-end retailers such as Williams Sonoma or Crate & Barrel.
This disconnect between the brand’s physical and digital experiences created challenges, including:
To address these issues, a complete website and marketing redesign was necessary—one that embraced modern UI/UX principles, created a seamless and immersive digital experience, and reinforced Roos International’s position as the premier destination for curated architectural materials.
With Roos recognizing the need for a modern, high-performing digital presence that accurately reflected its brand identity and premium selection of architectural materials, the company’s owner appointed me to identify key pain points and implement a solution that would deliver a functional, visually appealing, and user-friendly website within a defined timeframe.
After evaluating the existing platform, it became clear that the outdated design and lack of streamlined functionality hindered both user engagement and internal efficiency. The primary objectives for the redesign were:
Understanding User Needs:
Form Management & Client Interaction:
By addressing these core challenges, the goal was to create a website that not only enhances the user experience but also improves operational efficiency, ensuring that Roos International’s online presence matched its reputation as a premier provider of architectural materials.
To bridge the gap between its brand identity and its digital presence to its competitors, I developed a comprehensive solution that focused on aesthetics and enhanced functionality and operational efficiency. The redesign was structured around 2 key pillars: A/B Testing & UX Enhancements, and Feedback surveys
Product Card Layout
A card is a UI component that creates a visually distinct group of logically related information. It usually consists of a headline, a short chunk of description — summarizing the content of the resulting page — and an optional image, button, or ‘call-to-action’.
A/B Testing & UX Enhancements
<script>
document.addEventListener("DOMContentLoaded", async function () {
const productSlug = document.body.getAttribute("data-product-slug");
if (!productSlug) {
console.error("No Product Slug found.");
return;
}
const viewCountElement = document.querySelector(".product-view-count");
if (viewCountElement) {
viewCountElement.innerText = "Loading...";
}
// This code checks to see if the user has already visited this product today
const lastViewed = localStorage.getItem(`viewed_${productSlug}`);
const today = new Date().toDateString();
if (lastViewed === today) {
console.log("Skipping duplicate view for product:", productSlug);
} else {
try {
// Update UI before main database updates
if (viewCountElement) {
let currentCount = parseInt(viewCountElement.innerText.replace(/\D/g, "")) || 0;
viewCountElement.innerText = `Views: ${currentCount + 1}`;
}
// Send request to Firebase Function (database) to increment popularity
await incrementPopularityFunc({ productId: productSlug });
localStorage.setItem(`viewed_${productSlug}`, today);
console.log(`Page view recorded for product: ${productSlug}`);
} catch (error) {
console.error("Error tracking page view:", error);
}
}
try {
//Fetch the actual popularity count from Firestore database
const productsRef = db.collection("exclusive_products");
const querySnapshot = await productsRef.where("slug", "==", productSlug).limit(1).get();
if (!querySnapshot.empty) {
const productDoc = querySnapshot.docs[0];
const popularity = productDoc.data().popularity || 0;
console.log(`Popularity for ${productSlug}: ${popularity}`);
// Update the Webflow page with the final view count from Firestore
if (viewCountElement) {
viewCountElement.innerText = `Views: ${popularity}`;
}
} else {
console.warn("Product not found in Firestore:", productSlug);
}
} catch (error) {
console.error("Error fetching popularity:", error);
}
});
</script>
This small feature allowed me to understand how the average user in this area navigated the site, it satisfied a key element in how the website is structured and where bounce backs could occur:
Quick Search Bar
One key feature missing from the old layout was a search bar, a highly requested addition based on user feedback. Many users, already familiar with the product, preferred searching for items by their product numbers rather than navigating through multiple pages. With the introduction of this search functionality, finding specific products has become significantly faster and more convenient.
Form Management & Client Interaction: Enhancing User Engagement
The comprehensive redesign of Roos International’s website successfully transformed it into a visually compelling, user-friendly, and functionally efficient platform that aligns with the company’s high-end brand identity. By focusing on user experience, workflow integration, and automation, the new website delivers a seamless digital experience that enhances both customer engagement and internal operations.
A Visually Engaging and Intuitive Website
Enhanced Customer Engagement & Lead Generation
Overall Impact
Future Enhancements
The revamped digital presence successfully positioned Roos International for continued growth, providing both a superior user experience for customers and a more efficient workflow for internal teams. The project not only met the initial objectives but also set the foundation for future expansion and innovation.