import React from 'react'; import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'; const Calendar = () => { const events = [ { date: '2025-01-03', title: 'GRAMMYs Voting FINAL ENDS', artist: 'Cosmica' }, { date: '2025-01-16', title: '"Pink Lemonade" Presave', artist: 'Rhiannon' }, { date: '2025-01-22', title: '"Best Kept Secret" Single + Video', artist: 'Sedona' }, { date: '2025-01-24', title: 'Single Release Show', artist: 'Sedona' }, { date: '2025-01-31', title: '"Pink Lemonade" Single + Visualizer', artist: 'Rhiannon' }, { date: '2025-02-21', title: '"Can\'t Deny" Presave', artist: 'Rhiannon' }, { date: '2025-02-28', title: '"Can\'t Deny" Single + Visualizer', artist: 'Rhiannon' }, { date: '2025-03-05', title: '"Every Once In A While" + "The Culprit" Double Single', artist: 'Sedona' }, { date: '2025-03-07', title: 'SXSW Start', artist: 'Multiple Artists' }, { date: '2025-03-15', title: 'SXSW End', artist: 'Multiple Artists' }, { date: '2025-03-21', title: '"If I Could" Presave + Visualizer', artist: 'Rhiannon' }, { date: '2025-03-24', title: '"The Culprit" Visualizer', artist: 'Sedona' }, { date: '2025-03-28', title: '"If I Could" Single + EP Release', artist: 'Rhiannon' }, { date: '2025-04-16', title: '"Underneath" Single + Video', artist: 'Sedona' }, { date: '2025-05-23', title: '"Knock on Wood" + Album Release', artist: 'Sedona' }, { date: '2025-07-08', title: 'LAMC Start', artist: 'Cosmica' }, { date: '2025-07-12', title: 'LAMC End', artist: 'Cosmica' }, ]; const months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July' ]; const getArtistColor = (artist) => { const colors = { 'Cosmica': 'bg-blue-100 border-blue-300 text-blue-800', 'Rhiannon': 'bg-pink-100 border-pink-300 text-pink-800', 'Sedona': 'bg-purple-100 border-purple-300 text-purple-800', 'Multiple Artists': 'bg-green-100 border-green-300 text-green-800' }; return colors[artist] || 'bg-gray-100 border-gray-300 text-gray-800'; }; const getDaysInMonth = (year, month) => { return new Date(year, month + 1, 0).getDate(); }; const getFirstDayOfMonth = (year, month) => { return new Date(year, month, 1).getDay(); }; const getEventsForDate = (year, month, day) => { const dateStr = `${year}-${String(month + 1).padStart(2, '0')}-${String(day).padStart(2, '0')}`; return events.filter(event => event.date === dateStr); }; const monthHasEvents = (monthIndex) => { return events.some(event => { const eventMonth = parseInt(event.date.split('-')[1]) - 1; return eventMonth === monthIndex; }); }; return ( 2025 Calendar
Cosmica
Rhiannon
Sedona
Multiple Artists
{months.map((month, monthIndex) => { if (!monthHasEvents(monthIndex)) return null; const daysInMonth = getDaysInMonth(2025, monthIndex); const firstDay = getFirstDayOfMonth(2025, monthIndex); const days = []; for (let i = 0; i < firstDay; i++) { days.push(null); } for (let day = 1; day <= daysInMonth; day++) { days.push(day); } return (

{month} 2025

{['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'].map(day => (
{day}
))} {days.map((day, index) => { const dayEvents = day ? getEventsForDate(2025, monthIndex, day) : []; return (
{day && ( <>
{day}
{dayEvents.map((event, eventIndex) => (
{event.title}
))}
)}
); })}
); })}
); }; export default Calendar;
top of page

MAKING MOVIES

Known for an innovative approach to music inspired by American and Latin cultures, Latinx rock’n’rollers Making Movies are “breaking down walls in the U.S” (Rolling Stone). Formed by Panamanian brothers Enrique and Diego Chi, on electric guitar and bass respectively, they are joined by Mexican-American percussionist and keyboardist Juan-Carlos Chaurand, and drummer Duncan Burnett. The foursome showcase their Latin American roots by incorporating traditional instruments like the Panamanian mejorana, and swapping drums and percussion for a dueling zapateado huasteco. 

 

Making Movies rose to acclaim through a decade of relentless touring in the US and Latin America. The band has shared the stage with Arcade Fire, Los Lobos, Galactic, Ozomatli, Tennis, Thievery Corporation, Jesse & Joy, Rodrigo y Gabriela, and Hurray for the Riff Raff. The band also collaborated with Rubén Blades on the single “No Te Calles," which NPR included in their Best of 2019 list and became the opening track of his album Paraiso Road Gang nominated for 2019 Latin Grammy Album of the Year.

 

The band’s political stance is straightforward and can easily be seen in their style and heard in their music: “We are all Immigrants.”

 

The band just completed their fourth LP XOPA to be released in 2022 on Cosmica Records and have already been booked at the prestigious Vive Latino and Machaca festivals. XOPA is the undeniable sound of a seasoned rock’n’roll band built atop of afro latino rhythms. Produced by Ben Yonas and mixed by Tchad Blake, XOPA builds up over ten tracks with an incredible list of guests that includes Marc Ribot, Rubén Blades, Dolores Huerta, Los Lobos, The Sensational Barnes Brothers, Jeremy Kittel, Martha Gonzales, Rev. Charles Hodges, Asdru Sierra and Alaina Moore.

Making Movies is leaving their mark and 2022 will be a testament to that.

 

 

BOOKING AGENT

Seth Rappaport | APA

sethrappaport7@gmail.com

MGMT 

Ben Yonas | Yonas Media

ben@yonasmedia.com

LABEL

Gil Gastelum 

gil@cosmica-artists.com

Lana Mack

lana@cosmica-artists.com

Jeanette Diaz

jeanette@cosmica-artists.com

Reese Short

reese@cosmica-artists.com

PRESS INQUIRIES

Lauren Horne | Yonas Media

lauren@yonasmedia.com

 

bottom of page