import React from 'react'; export default function EventTicket() { const handleFlip = () => { document.getElementById('ticket').classList.toggle('flipped'); }; const handleDownload = () => { window.print(); }; return ( <>
{/* Front Side */}

ANNUAL MUSIC FESTIVAL

DATE

AUGUST 15, 2024

TIME

DOORS OPEN 6:00 PM

VENUE

CENTRAL PARK AMPHITHEATER

TICKET HOLDER

ALEX JOHNSON

TICKET TYPE

VIP ACCESS

TICKET #

A-23871

SEATING

SECTION A, ROW 5, SEAT 12

PRICE

$150.00

SCAN FOR ENTRY

This ticket is non-refundable. No re-entry allowed.

Event will proceed rain or shine.

Presented by EVENTSCAPE PRODUCTIONS

www.eventscapeproductions.com

{/* Back Side */}

About The Festival

Join us for an unforgettable night of music featuring top artists from around the world. Experience amazing performances, food vendors, and interactive art installations.

Don't forget to visit our merchandise booth for exclusive festival memorabilia!

); }