Welcome to Moon Boom at La Finka

img_logo_MoonBoom.png| center| 450

Discover Reno's Third Space

Immerse yourself in the warmth and intimacy of Moon Boom, a monthly concert series nestled in the unique ambiance of La Finka’s sunken living room ~ Jade Lounge. Each month, we open our doors to our community, inviting both local and traveling artists to share their craft in an environment unique to Reno with high fidelity sound and attentive audiences.

A Stage Like No Other

The intimacy of our setting allows for a profound connection between artists and audience, making each performance not just heard, but truly felt. Focusing on the larger dialogue between artist and observer, we craft and foster an atmosphere of community and appreciation. We focus on sound quality within our intimate setting, creating a perfect backdrop for an unforgettable artistic experience.

Connect With Us

At Moon Boom, your performance goes beyond the stage as you become part of this vibrant community in Reno. Anchored by La Finka's diverse activities and rich dialogues, our community thrives on genuine connections and shared artistic passion. Moon Boom provides a welcoming space where you can delve into your artistic potential, connect meaningfully with an audience that appreciates uniqueness and creativity, and share in the experience of genuine artistic exploration.

We invite you to be a part of Moon Boom — where your music meets our passion!


Event Details

Email us at lafinka@pm.me {}
or
Fill out this Form


Photos of Past Events

img_MB_1.jpeg
MB015 | @Noah.Dane

img_MB_2.jpeg
MB018 | @lolaguthrie_

img_MB_3.jpeg
MB006 | @Emilio.Cazares

img_MB_4.jpeg
MB014 | @kat.heart.reno
img_MB_5.jpegMB006 | @Emilio.Cazares

ToDo:: Implement & Test Carousel Gallery

<div class="carousel">
    <div class="carousel-slide">
        <img src="img_MB_1.jpeg.jpg" alt="Image 1">
        <img src="img_MB_2.jpeg.jpg" alt="Image 2">
        <img src="img_MB_3.jpeg.jpg" alt="Image 3">
    </div>
    <button class="prev">❮</button>
    <button class="next">❯</button>
</div>

<script>
let currentIndex = 0;
const images = document.querySelectorAll(".carousel-slide img");
const totalImages = images.length;

document.querySelector(".next").addEventListener("click", () => {
    currentIndex = (currentIndex + 1) % totalImages;
    updateCarousel();
});

document.querySelector(".prev").addEventListener("click", () => {
    currentIndex = (currentIndex - 1 + totalImages) % totalImages;
    updateCarousel();
});

function updateCarousel() {
    const offset = -currentIndex * 100;
    document.querySelector(".carousel-slide").style.transform = `translateX(${offset}%)`;
}
</script>