Skip to content

Commit 3340351

Browse files
imick-iorobinjhuangric-yuchristian-byrneclaude
authored
feat(website): add Beyond the Models and Model Jam events (#15307)
## Summary Add two events to the `/events` page: an upcoming Aug 19 livestream and the past Aug 10 Comfy Creatives Model Jam recording. ## Changes - **What**: Two new `ComfyEvent` entries in `apps/website/src/data/events.ts`. - `beyond-the-models` — "Using Comfy to Go Beyond the Models" (upcoming, Aug 19 2026, `liveVideoId`). Renders in the Upcoming section on `/events` and gets `/events/beyond-the-models`. Includes `media` so it becomes a valid past-gallery card automatically after it airs. - `comfy-creatives-model-jam` — "Comfy Creatives Model Jam: MiniMax H3, Seedance 2.5, Wan Animate 2 & More" (past, Aug 10 2026, `recordingVideoId`). Renders in the Past gallery and emits VideoObject JSON-LD on `/events/comfy-creatives-model-jam`. ## Review Focus - Neither event is featured (no hero carousel) by design — both surface in their list sections only. - The past event uses `recordingVideoId` (not `liveVideoId`) so the already-published recording gets VideoObject structured data. - zh-CN copy is a machine first-pass, consistent with the file's existing "pending native review" note. --------- Co-authored-by: Robin Huang <robin.j.huang@gmail.com> Co-authored-by: Richard Yu <richard95yu@gmail.com> Co-authored-by: bymyself <cbyrne@comfy.org> Co-authored-by: Claude <noreply@anthropic.com>
1 parent 19452ac commit 3340351

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

apps/website/src/data/events.ts

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,30 @@ const showdownStreamHref: LocalizedText = {
208208

209209
// zh-CN copy is a first pass and pending native review.
210210
const events: readonly ComfyEvent[] = [
211+
{
212+
id: 'beyond-the-models',
213+
category: 'livestream',
214+
title: {
215+
en: 'Using Comfy to Go Beyond the Models: Custom Workflows for Commercial and Film Production',
216+
'zh-CN': '善用 Comfy,超越模型本身:面向商业与影视制作的自定义工作流'
217+
},
218+
description: {
219+
en: 'Go beyond off-the-shelf models: a live walkthrough of building custom ComfyUI workflows for commercial and film production.',
220+
'zh-CN':
221+
'超越开箱即用的模型:现场演示如何为商业与影视制作构建自定义 ComfyUI 工作流。'
222+
},
223+
location: { en: 'Online', 'zh-CN': '线上' },
224+
dateLabel: {
225+
en: 'August 19, 2026 · 10AM PT',
226+
'zh-CN': '2026年8月19日 · 上午10点(PT)'
227+
},
228+
startDateTime: '2026-08-19T10:00:00-07:00',
229+
liveVideoId: 'IzTI8oK_Wg4',
230+
media: eventImage('livestream-aug-19.jpg', {
231+
en: 'Using Comfy to Go Beyond the Models livestream',
232+
'zh-CN': '善用 Comfy,超越模型本身直播'
233+
})
234+
},
211235
{
212236
id: 'future-ai-post-production',
213237
category: 'livestream',
@@ -273,6 +297,27 @@ const events: readonly ComfyEvent[] = [
273297
autoplayMs: 5000
274298
}
275299
},
300+
{
301+
id: 'comfy-creatives-model-jam',
302+
category: 'livestream',
303+
title: {
304+
en: 'Comfy Creatives Model Jam: MiniMax H3, Seedance 2.5, Wan Animate 2 & More',
305+
'zh-CN':
306+
'Comfy Creatives 模型大乱斗:MiniMax H3、Seedance 2.5、Wan Animate 2 等'
307+
},
308+
description: {
309+
en: 'The Comfy Creatives community jams on the latest models — MiniMax H3, Seedance 2.5, Wan Animate 2, and more — in a hands-on livestream.',
310+
'zh-CN':
311+
'Comfy Creatives 社区在这场实战直播中集中体验最新模型——MiniMax H3、Seedance 2.5、Wan Animate 2 等。'
312+
},
313+
location: { en: 'Online', 'zh-CN': '线上' },
314+
media: eventImage('livestream_aug-10.jpg', {
315+
en: 'Comfy Creatives Model Jam livestream recording',
316+
'zh-CN': 'Comfy Creatives 模型大乱斗直播回放'
317+
}),
318+
startDateTime: '2026-08-10T10:00:00-07:00',
319+
recordingVideoId: 'BCqp2xnUeKk'
320+
},
276321
{
277322
id: 'july-launches',
278323
category: 'livestream',

0 commit comments

Comments
 (0)