We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f94e2 commit 04c30baCopy full SHA for 04c30ba
app/(default)/(page)/events/page.tsx
@@ -63,7 +63,7 @@ export default function Home() {
63
<div className="w-full max-w-7xl grid gap-12 grid-cols-1 xl:grid-cols-2">
64
{[...events.values()].filter(event => event.keys.includes(year)).map((event) => (
65
<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'}>
+ <Link className="w-full h-80 relative rounded-sm shadow-sm overflow-hidden group" href={event.url} target={event.url.startsWith('http') ? '_blank' : '_self'}>
67
<Image
68
src={event.image}
69
alt={event.location}
0 commit comments