+ router.back()}>
+
+
+
+ Classics for Seniors
+
+
+ {' '}
+ 1411 E 31st St,
+ Oakland, CA{' '}
+
+ {event && (
+
+ {event?.needs_host && (
+ Host Needed
+ )}
+
+ {event?.performance_type}
+
+
+ {event?.genre}
+
+
+ )}
+ About
+
+ Lorem ipsum dolor sit amet consectetur. Arcu neque neque diam tortor
+ amet. Eget quam sit eu nisl fermentum ac ipsum morbi. Gravida
+ convallis molestie purus eros magna tempus fermentum. Habitant
+ sollicitudin fames mi parturient faucibus odio non habitant diam.
+
+ {facility?.name}
+ Prefer Orchestra
+ {event?.needs_host ? (
+
+ Bread & Roses Presents
+ Host should be able to carry 15lbs of equipment
+
+ ) : (
+ ''
+ )}
+ Show Interest
+ {InterestBlockGen(
+ 'To Perform',
+ 'Be the star of the show!',
+ '/images/star.svg',
+ )}
+ {InterestBlockGen(
+ 'To Host',
+ 'Help setup the show!',
+ '/images/help.svg',
+ )}
+ Sign up
+
+
+ );
+}
diff --git a/app/discover/[event_id]/styles.ts b/app/discover/[event_id]/styles.ts
new file mode 100644
index 0000000..64f654f
--- /dev/null
+++ b/app/discover/[event_id]/styles.ts
@@ -0,0 +1,138 @@
+'use client';
+
+import NextImage from 'next/image';
+import styled from 'styled-components';
+import COLORS from '@/styles/colors';
+import { H3, H5, P, SMALL } from '@/styles/text';
+
+interface TagProps {
+ $bgColor?: string;
+}
+
+export const Container = styled.div`
+ margin-left: 1rem;
+ margin-right: 1rem;
+ margin-top: 1rem;
+`;
+
+export const Body = styled.div`
+ margin-left: 1rem;
+ margin-right: 1rem;
+`;
+
+export const Image = styled(NextImage)`
+ width: 20px;
+ height: 20px;
+ margin-bottom: -2px;
+`;
+
+export const BackButton = styled.button`
+ background-color: transparent;
+ border: none;
+ outline: none;
+ padding: 0;
+`;
+
+export const Title = styled(H3)`
+ font-weight: 500;
+ margin-top: 1.5rem;
+`;
+
+export const Time = styled(P)`
+ margin-top: 0.875rem;
+`;
+
+export const Location = styled(SMALL)`
+ color: ${COLORS.gray10};
+ margin-top: 0.375rem;
+`;
+
+export const IndividualTag = styled.span