Skip to content

Commit 04c30ba

Browse files
committed
.
1 parent 09f94e2 commit 04c30ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/(default)/(page)/events/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default function Home() {
6363
<div className="w-full max-w-7xl grid gap-12 grid-cols-1 xl:grid-cols-2">
6464
{[...events.values()].filter(event => event.keys.includes(year)).map((event) => (
6565
<div className="flex flex-col gap-6" key={event.title}>
66-
<Link className="w-full h-64 relative rounded-sm shadow-sm overflow-hidden group" href={event.url} target={event.url.startsWith('http') ? '_blank' : '_self'}>
66+
<Link className="w-full h-80 relative rounded-sm shadow-sm overflow-hidden group" href={event.url} target={event.url.startsWith('http') ? '_blank' : '_self'}>
6767
<Image
6868
src={event.image}
6969
alt={event.location}

0 commit comments

Comments
 (0)