ADVERTISEMENT

Galaxy Racer, Inclusively yours

Published Jul 3, 2022 05:41 pm

Written by Jun P. Velasco

Kitz Cua loves cosplay. Bringing to life, the beloved characters in League of Legends started a passion project that found its way to TikTok, Twitch, and millions of followers. Now, Kitz is one of the many inclusive talents of Galaxy Racer.

Galaxy Racer

Galaxy Racer (GXR), a Transmedia Powerhouse leading the way in esports, content creation, music, and sports, also shows how to lead and cultivate a culture of inclusion. With thousands of team members spread out across the globe, from members of the organization to esports teams to content creators, GXR is indeed a community of diversity.

The world is evolving into a generation with more younger people than ever in our history. And this younger generation is inherently inclusive as opposed to any other generation before it. Their worldview is more expansive as the information channels are wide open, and communication is no longer bordered and limited. It is the internet age, and open-mindedness falls under a fresher and broader definition.

This generational evolution has created a new breed of information sources that we now commonly refer to as content creators. They dominate the online sphere, from social media platforms to websites, blogs, and vlogs. Each has something unique to offer, and their uniqueness has spurred a fanatical following that is admirable in many ways.

GXR Creators is proud to be collaborating with notable creators like Kitz Cua, Yna Magenda, and Kristine Santamena. With millions of followers across different platforms, these creators clearly set themselves apart from other weekend creators.

We begin with the story of Kitz Cua, a cosplayer who’s got game.

Kitz Cua

As a content creator, she found her home in TikTok and Twitch, where she feels very comfortable creating content and has successfully nurtured a friendly and supportive community. Cua shares, "I used to do cosplay videos where I lip-sync to a song or do a dance, but it did not do well. I decided to showcase transitioning from my usual self to a character with my video editing style, which worked well."

She also livestreams playing Wild Rift and shares, "With Wild Rift, I get to enjoy the game and the interaction with my followers. The streaming community is so tight-knit that almost everyone knows everyone, and I have made many genuine friends." Her love for interacting with her followers is why she continues to stream. Cua finds real-time interaction heartwarming.

She believes her strength as a player is not due to her skills or game knowledge but more about having a good mentality, enjoying the games, and sharing the enjoyment with the people watching her play and the ones she gets to play with.

She summarizes her experience with other players as admirable, as players are "humble in victory, gracious in defeat."

"Kitz is just one of the many creators we support," according to Marcia Guillermo, Galaxy Racer’s country manager. "Our pool of creators is beloved by their followers, and we feel our collaboration with them will create an ecosystem that benefits everyone, the creators, their followers, the industry, and the brands we bring in as partners."

Related Tags

Kitz Cua Galaxy Racer Content creators
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.