Valories with Special Guests Aaron Rizzo + Caro...
From the venue:
Event Description
Valories is a Nashville-based alt-pop artist defying the rules of the genre. Constantly looking for ways to push the boundaries both sonically and thematically, she’s crafted a unique sound while also drawing in fans of MUNA, Paramore, Miley Cyrus, and PVRIS. While her lyrics are often vulnerable and dark, Valories curates a magnetic and high energy live show, never falling short of displaying her charismatic personality.
Since bursting onto the scene in 2022, Valories has been carving out her own lane in the alt-pop world. Her music has garnered attention from tastemakers like EARMILK, Ones to Watch, Pleaser Mag, Cage Riot, LUNA Mag, Tongue Tied Mag, No Country for New Nashville, and East of 8th. She’s earned airplay on Lightning 100 and captivated live audiences with standout performances, including a support slot for NIKI at Eastside Bowl, a sold-out Cannery Hall show with Tay Jardine (We Are the In Crowd), and most recently, a packed-out headlining show at Nashville’s classic venue “The End.”
With momentum building and more on the horizon, Valories continues evolving and finding ways to one-up herself—her latest EP “SCRAM” being a prime example of her at her boldest. As East of 8th writes: “Valories’ latest track ‘i can’t wait’ captures the intensity of longing with an edge that’s both playful and deeply felt — she’s quickly becoming one of Nashville’s most compelling alt-pop voices.”
--
AARON RIZZO IS AN INDEPENDENT ROCK ARTIST FROM ROCHESTER, NY WHO HAS APPEARED ON NBC’S HIT SHOW THE VOICE AND WHOSE MUSIC CAN BE HEARD IN MULTIPLE TV SERIES’ INCLUDING SHAMELESS AND BLACK-ISH.
TO DATE, AARON HAS RECORDED FOUR FULL-LENGTH RECORDS IN ADDITION TO TWO MOVIE SCORES, ONE OF WHICH (OPTIC NERVE) THAT WENT ON TO WIN BEST SCORE AT THE SICK ‘N WRONG FILM FESTIVAL.
A GUITAR PLAYER BY NATURE AND A SINGER BY TRADE, AARON RIZZO CONTINUES TO WRITE, RECORD AND PRODUCE MUSIC FOR HIMSELF AND OTHERS IN ATLANTA, GA WHERE HE IS BASED.
--
Caroline Reilly is making waves in the Atlanta pop rock scene with a sound that captures the essence of 2000s pop punk, infused with her own distinctive flair. Launching her artist project at just 18, Caroline has been captivating audiences for the past three years with her heartfelt vocals and relatable lyrics. She has shared the stage with notable acts like Lit, Stand Atlantic, Royal & the Serpent, and Icon for Hire, delivering live performances brimming with emotion and energy that leave lasting impressions on fans.
Her latest single, “21,” is gaining momentum, steadily climbing the charts on social media and streaming platforms. Caroline’s music explores the intricacies of love and heartbreak, resonating deeply with her listeners. A passionate advocate for women in music, she actively collaborates with fellow pop rock artists, particularly those in women-led bands, fostering a supportive community.
With a dedicated fan base, Caroline engages with her listeners through social media, creating a strong sense of connection. Her music offers a blend of anthems perfect for singing along and comforting tracks that uplift young people. If you’re seeking an artist who embodies passion and authenticity, Caroline Reilly is a compelling choice.
Event Organizer
body.scroll-disabled {
overflow: hidden;
}
#message-overlay {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 999;
overflow: auto;
}
#message-modal {
position: relative;
top: 7%;
width: 80%;
max-width: 400px;
margin: auto;
background-color: white;
margin-bottom: 50px;
}
#message-modal .panel-heading {
text-align: left;
}
#message-modal .contact-field {
text-align: left;
}
#message-modal label {
margin: 1em 0 0 0;
padding: 0;
}
#message-modal textarea {
resize: vertical;
min-height: 5.5em;
}
#message-modal .ft-form-error {
border: 1px solid #cd252f;
}
#message-modal .close-contact {
cursor: pointer;
}
#message-overlay .panel-footer {
overflow: hidden;
}
#message-modal #cancel-message {
float: left;
background: none;
border: none;
color: darkgrey;
}
#message-modal #cancel-message:hover, #message-modal #cancel-message:active {
color: black;
}
#message-modal #submit-message {
float: right;
transition: all 0.25s;
width: 144px !important;
}
#message-modal #submit-message.btn-success {
opacity: 1;
}
.error-message {
display: none;
color: #b94a48;
font-size: 1em;
}
#message-form > .error-message {
text-align: center;
}
.contact-field .error-message {
text-align: right;
}
Send a message to Smith's Olde Bar
Your Email Address
Message
CANCEL
SEND MESSAGE
$(document).ready(function() {
pageBody = $('body');
modal = $('#message-overlay');
email = $('#message-email');
body = $('#message-body');
submit = $('#submit-message');
cancel = $('#cancel-message');
formErrorField = $('#message-form > .error-message');
contactToken = '';
// open modal functionality
function showModal() {
pageBody.addClass('scroll-disabled');
modal.slideDown();
}
$('#message-button').click(function(e) {
e.preventDefault();
showModal();
});
// close modal functionality
function hideModal(callback = function() {}) {
pageBody.removeClass('scroll-disabled');
modal.slideUp(function() {
callback();
});
}
$(window).keydown(function(e) {
if (e.keyCode == 27) {
hideModal();
}
});
$('.close-contact').click(function() {
hideModal();
});
pageBody.click(function(e) {
if (modal.is(':visible')) {
if ($(e.target).attr('id') == 'message-overlay') {
hideModal();
}
}
});
// field validation
fieldTouched = {
'message-email': false,
'message-body': false
};
regex = {
'message-email': /((?!https?:\/\/).)*$/}
errors = {
'message-email': {
'blank': 'Please provide a valid contact email address.',
'format': 'Please provide a valid contact email address.'
},
'message-body': {
'blank': 'Please enter a message.',
'format': 'Please remove "http://" or "https://" from any links.'
}
};
function validate(field, value) {
if (inputIsBlank(value)) {
return errorsfield'blank';
} else if (inputIsInvalid(field, value)) {
return errorsfield'format';
}
}
function inputIsBlank(value) {
return value.replace(/\s/g, '').length == 0
}
function inputIsInvalid(field, value) {
return value.split(/\s/).join('').match(regexfield) == null;
}
function markAsInvalid(element, message) {
$(element).addClass('ft-form-error');
$(element).next().text(message);
$(element).next().slideDown();
submit.addClass('disabled');
}
function successfulValidation(element) {
markAsValid(element);
if (email.val().length > 0 && body.val().length > 0) {
if ($('#message-email.ft-form-error, #message-body.ft-form-error').length == 0) {
submit.removeClass('disabled');
}
}
}
function markAsValid(element) {
$(element).removeClass('ft-form-error');
$(element).next().slideUp();
}
$('#message-email, #message-body').keyup(function() {
var field = $(this).attr('id');
var value = $(this).val();
| value.length > 0; |
| if (fieldTouchedfield) { |
| var error = validate(field, value); |
| if (error != null) { |
| markAsInvalid(this, error); |
| } else { |
| successfulValidation(this); |
| } |
| } |
| }); |
| // form submission |
| function disableForm() { |
| $('#submit-message, #cancel-message').addClass('disabled'); |
| modal.find('input, textarea').attr('disabled', true); |
| } |
| function enableFields() { |
| modal.find('input, textarea').removeAttr('disabled'); |
| submit.html('SEND MESSAGE'); |
| cancel.removeClass('disabled'); |
| } |
| function enableForm() { |
| submit.removeClass('disabled'); |
| enableFields(); |
| } |
| function scheduleFormReset() { |
| setTimeout(function() { resetForm() }, 1250); |
| } |
| function resetForm() { |
| hideModal(function() { |
| email.val(); |
| body.val(); |
| submit.removeClass('btn-success'); |
| enableForm(); |
| }); |
| } |
| submit.click(function() { |
| submit.html('<i class="fa fa-cog fa-spin"></i>'); |
| formErrorField.slideUp(); |
| disableForm(); |
| var emailVal = $('#message-email').val(); |
| var bodyVal = $('#message-body').val(); |
| var yourNameVal = $('#your_name').val(); |
| $.ajax({ |
| url: '/organizations/7359e059-a585-421e-9e40-baf4956ba800', |
| type: 'POST', |
| dataType: 'json', |
| data: { |
| 'email': emailVal, |
| 'body': bodyVal, |
| 'your_name': yourNameVal, |
| 'contact_token': contactToken, |
| 'authenticity_token': 'b9oPYHW6AM+Od3eiaaggmVnZ2RO/dBayctD12AqV2uyh5ZiXcv9umoqFH0k3kJVScfb+sIFrXLfEHKgFmCgV3g==' |
| }, |
| success: function(data) { |
| if (data'contact_token' != null) { |
| contactToken = data'contact_token'; |
| } |
| if (data.success) { |
| submit.html('<i class="fa fa-check-circle"></i>'); |
| submit.addClass('btn-success'); |
| scheduleFormReset(); |
| } else { |
| var errors = data'errors'; |
| var emailError = errors'email'; |
| var bodyError = errors'body'; |
| var formError = errors'form'; |
| if (emailError != null) { |
| markAsInvalid(email, emailError); |
| } |
| if (bodyError != null) { |
| markAsInvalid(body, bodyError); |
| } |
| if (emailError null && bodyError null) { |
| formError = formError |
formErrorField.text(formError);
formErrorField.slideDown();
enableForm();
} else {
enableFields();
}
}
},
error: function() {
formErrorField.text('There was a problem sending your message. Please try again.');
formErrorField.slideDown();
enableForm();
}
});
});
});
Contact Organizer
Smith's Olde Bar
Stephen Kellogg and The Homecoming with special...
Tue, January 27, 2026
6:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Ruby Velle & The Soulphonics present "Olde Soul...
Tue, January 27, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Velvet Daydream, Palace Rats, Lila Graves, Mani...
Thu, January 29, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Jeremy Would Let Me Drown Presents: 35th Annive...
Fri, January 30, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Indecision + Stanley Jordan
Fri, January 30, 2026
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Panic Stricken
Sat, January 31, 2026
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
See More Events from This Organizer
Valories with Special Guests Aaron Rizzo + Ca... | 03/19/2026 8:00 PM