Skip to content

Commit 131673c

Browse files
committed
wip
1 parent ea62c49 commit 131673c

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default withLess(
6565

6666
return config
6767
},
68-
output: "export",
68+
// output: "export",
6969
images: {
7070
loader: "custom",
7171
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],

src/app/conf/2025/components/speaker-opengraph-image.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default function SpeakerOpengraphImage({
153153
borderLeft: `2px solid ${colors.neu600}`,
154154
}}
155155
>
156-
<div
156+
{/* <div
157157
style={{
158158
position: "absolute",
159159
inset: 0,
@@ -170,7 +170,18 @@ export default function SpeakerOpengraphImage({
170170
}}
171171
width={RIGHT_COLUMN_WIDTH_PX}
172172
height={RIGHT_COLUMN_WIDTH_PX}
173-
/>
173+
/> */}
174+
<svg
175+
viewBox={`0 0 ${RIGHT_COLUMN_WIDTH_PX} ${RIGHT_COLUMN_WIDTH_PX}`}
176+
width={RIGHT_COLUMN_WIDTH_PX}
177+
height={RIGHT_COLUMN_WIDTH_PX}
178+
>
179+
<image
180+
href={normalizeProtocolRelativeUrl(speaker.avatar)}
181+
width={RIGHT_COLUMN_WIDTH_PX}
182+
height={RIGHT_COLUMN_WIDTH_PX}
183+
/>
184+
</svg>
174185
</div>
175186
)}
176187
</div>

0 commit comments

Comments
 (0)