diff --git a/src/components/EventBlock.svelte b/src/components/EventBlock.svelte
index 9ba12ef..e7ba619 100644
--- a/src/components/EventBlock.svelte
+++ b/src/components/EventBlock.svelte
@@ -1,106 +1,103 @@
-
-
-
- {#if thumbnail}
-

- {:else if eventCategory?.[0] === 'social'}
-

- {:else if eventCategory?.[0] === 'technical'}
-

- {:else if eventCategory?.[0] === 'professional'}
-

- {:else if eventCategory?.[0] === 'academic'}
-

- {:else}
-

- {/if}
-
-
+
+
+
+ {#if thumbnail}
+

+ {:else if eventCategory?.[0] === 'social'}
+

+ {:else if eventCategory?.[0] === 'technical'}
+

+ {:else if eventCategory?.[0] === 'professional'}
+

+ {:else if eventCategory?.[0] === 'academic'}
+

+ {:else}
+

+ {/if}
+
+
-
-
-
- {eventTitle}
-
+
+
+
+ {eventTitle}
+
- {#if eventDescription}
-
- {/if}
+ {#if eventDescription}
+
+ {/if}
-
+
+
+
-
-
+
+
+
Location:
+
{location ?? 'TBA'}
+
+
-
-
-
Location:
-
{location ?? 'TBA'}
-
-
+
+
+
+
Registration:
+ {#if registrationLink}
+
+ Register Here
+
+ {:else}
+
Just drop in!
+ {/if}
+
-
-
-
-
Registration:
- {#if registrationLink}
-
- Register Here
-
- {:else}
-
Just drop in!
- {/if}
-
-
-
-
-
Payment:
- {#if paymentLink}
-
- Pay Here
-
- {:else}
-
Free!
- {/if}
-
-
-
-
+
+
+
Payment:
+ {#if paymentLink}
+
+ Pay Here
+
+ {:else}
+
Free!
+ {/if}
+
+
+
+
diff --git a/src/routes/events/+page.server.ts b/src/routes/events/+page.server.ts
index a294d3a..d9d7879 100644
--- a/src/routes/events/+page.server.ts
+++ b/src/routes/events/+page.server.ts
@@ -9,7 +9,7 @@ const eventQuery = `*[_type == "events"]{
description,
reglink,
paylink,
- "thumbnail": thumbnail.asset->url,
+ "thumbnail": thumbnail.asset->url+"?h=700&fm=webp",
"lastUpdated": _updatedAt,
}`;