Skip to content

Commit b43b939

Browse files
authored
♻️ upcoming show explanation [b] (#3965)
1 parent c4f1ae2 commit b43b939

File tree

1 file changed

+41
-6
lines changed
  • sites/jeromefitzgerald.com/src/app/(segments)/events/_components

1 file changed

+41
-6
lines changed

sites/jeromefitzgerald.com/src/app/(segments)/events/_components/List.tsx

Lines changed: 41 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { Em } from '@radix-ui/themes/dist/esm/components/em.js'
1010
import { Flex } from '@radix-ui/themes/dist/esm/components/flex.js'
1111
import { Grid } from '@radix-ui/themes/dist/esm/components/grid.js'
1212
import { Heading } from '@radix-ui/themes/dist/esm/components/heading.js'
13+
import { Link } from '@radix-ui/themes/dist/esm/components/link.js'
1314
import { Strong } from '@radix-ui/themes/dist/esm/components/strong.js'
1415
import { Text } from '@radix-ui/themes/dist/esm/components/text.js'
1516
import { isAfter } from 'date-fns/isAfter'
@@ -25,7 +26,7 @@ import { getImageKeyValue } from '@/lib/drizzle/schemas/cache-images/queries'
2526
import { getImageKeySlug } from '@/lib/drizzle/utils/getImageKeySlug'
2627
import { cx } from '@/utils/cx'
2728

28-
import { AccordionClient } from './List.Client'
29+
// import { AccordionClient } from './List.Client'
2930

3031
function ListWrapper({ events }: { events: Event[] }) {
3132
// return null
@@ -241,6 +242,41 @@ function Listing({ items }: { items: Event[] }) {
241242
gap="9"
242243
mb={{ initial: '4', md: '6' }}
243244
pb={{ initial: '4', md: '6' }}
245+
>
246+
<Flex direction="column" gap="7">
247+
<Text size={{ initial: '5', md: '7' }}>
248+
Ahoy. I recently moved to <Strong>Brooklyn</Strong> coming from{' '}
249+
<Em>Pittsburgh</Em>.
250+
</Text>{' '}
251+
<Text size={{ initial: '5', md: '7' }}>
252+
As a result, my known upcoming show calendar is all over the place as I
253+
no longer have multiple monthly shows. (Perhaps I did not think this
254+
through?)
255+
</Text>
256+
<Text size={{ initial: '4', md: '6' }}>
257+
In lieu of that, I am doing feature sets, random drop-ins, and a lot of
258+
last minute “Hey do this!”
259+
<br />
260+
And I will! I will do whatever <Strong>this</Strong> is.
261+
</Text>
262+
<Text size={{ initial: '4', md: '6' }}>
263+
So reach out on IG I guess if so:{' '}
264+
<Link href="https://instagram.com/JeromeFitz">@JeromeFitz</Link>{' '}
265+
<Text size={{ initial: '3', md: '5' }}>
266+
(That is admittedly empty! But I will respond [eventually].)
267+
</Text>
268+
</Text>
269+
<Text size={{ initial: '4', md: '6' }}>
270+
Will have a festival schedule and new upcoming show once things are
271+
settled a bit.
272+
</Text>
273+
</Flex>
274+
</Flex>
275+
{/* <Flex
276+
direction="column"
277+
gap="9"
278+
mb={{ initial: '4', md: '6' }}
279+
pb={{ initial: '4', md: '6' }}
244280
>
245281
<Flex direction="column" gap="3">
246282
<Text size={{ initial: '3', md: '5' }}>
@@ -253,11 +289,10 @@ function Listing({ items }: { items: Event[] }) {
253289
<Strong>(And he is always very game to do so.)</Strong>
254290
</Text>
255291
</Flex>
256-
</Flex>
257-
<ListWrapper events={eventsUpcoming} />
258-
<HeaderFull count={eventsPast.length} overline="" title="Past Events" />
259-
260-
<AccordionClient items={eventsPast} />
292+
</Flex> */}
293+
{/* <ListWrapper events={eventsUpcoming} /> */}
294+
{/* <HeaderFull count={eventsPast.length} overline="" title="Past Events" /> */}
295+
{/* <AccordionClient items={eventsPast} /> */}
261296
</Flex>
262297
)
263298
}

0 commit comments

Comments
 (0)