At Gracie's, our mission is simple: enhance and educate the palate with the freshest ingredients and flavors, while surprising and exciting each guest with personal care and service.

Dining Experiences

A La Carte

Choose your own adventure by selecting your preferred dishes.

explore all culinary offerings

Chef’s Tasting Menu

Choose between five or seven curated courses. Wine and non-alcoholic pairings available.

reserve your tasting menu

Bar & Lounge

Enjoy our full menu with Signature Cocktails and Curated Pairings

reserve seats at the bar or in the lounge

weddings & Private Events

Gracie’s provides a beautifully warm and intimate setting for any celebration.

we are proud to be a
AAA Four Diamond Award given to Gracie's Fine Dining in Providence, RI
4 diamond establishment
<div id="eventbrite-widget-container"></div>
<script src="https://www.eventbrite.com/static/widgets/eb_widgets.js"></script>
(function() {
    let pendingEventId = null;
    let modalCreated = false;
    
    document.addEventListener('click', function(e) {
        const btn = e.target.closest('.event-ticket-btn');
        if (btn) {
            let hiddenText = btn.parentElement.querySelector('.event-id-data');
            if (!hiddenText) {
                hiddenText = btn.previousElementSibling?.classList.contains('event-id-data') 
                    ? btn.previousElementSibling 
                    : btn.nextElementSibling;
            }
            
            if (hiddenText && hiddenText.textContent) {
                pendingEventId = hiddenText.textContent.trim();
            }
        }
    });
    
    const checkPopup = setInterval(function() {
        const container = document.getElementById('eventbrite-widget-container');
        
        if (container && container.offsetParent !== null && pendingEventId && !modalCreated && window.EBWidgets) {
            window.EBWidgets.createWidget({
                widgetType: "checkout",
                eventId: pendingEventId,
                modal: true, // This makes it a modal
                modalTriggerElementId: "eventbrite-widget-container"
            });
            modalCreated = true;
            
            // Auto-trigger the modal
            setTimeout(() => container.click(), 100);
        }
    }, 100);
})();