Skip to content

Commit f96b0cf

Browse files
committed
fix links
1 parent 0949c0c commit f96b0cf

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ typings/
4444
# dotenv environment variable files
4545
.env*
4646

47-
!static/img/**/__og-image/
47+
!static/img/__og-image/**
4848
static/img/__og-image/*
49-
!static/img/**/__og-image/*.png
49+
!static/img/__og-image/**/*.png
5050

5151
# Mac files
5252
.DS_Store

src/app/conf/2023/sessions/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function generateMetadata({ params }: SessionProps): Metadata {
3131
description: event.description,
3232
keywords: [...layoutMetadata.keywords, ...keywords],
3333
openGraph: {
34-
images: `/img/2023/__og-image/${event.id}.png`,
34+
images: `/img/__og-image/2023/${event.id}.png`,
3535
},
3636
}
3737
}

src/app/conf/2023/speakers/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function generateMetadata({ params }: SpeakerProps): Metadata {
2828
description: speaker.about,
2929
keywords: [...layoutMetadata.keywords, ...keywords],
3030
openGraph: {
31-
images: `/img/2023/__og-image/${speaker.username}.png`,
31+
images: `/img/__og-image/2023/${speaker.username}.png`,
3232
},
3333
}
3434
}

src/app/conf/2024/schedule/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function generateMetadata({ params }: SessionProps): Metadata {
4646
description: event.description,
4747
keywords: [...layoutMetadata.keywords, ...keywords],
4848
openGraph: {
49-
images: `/img/2024/__og-image/${event.id}.png`,
49+
images: `/img/__og-image/2024/${event.id}.png`,
5050
},
5151
}
5252
}

src/app/conf/2024/speakers/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function generateMetadata({ params }: SpeakerProps): Metadata {
2929
description: speaker.about,
3030
keywords: [...layoutMetadata.keywords, ...keywords],
3131
openGraph: {
32-
images: `/img/2024/__og-image/${speaker.username}.png`,
32+
images: `/img/__og-image/2024/${speaker.username}.png`,
3333
},
3434
}
3535
}

0 commit comments

Comments
 (0)