diff --git a/src/components/workshop/Workshop2025Section.astro b/src/components/workshop/Workshop2025Section.astro
index 6f9da81..6be9bd8 100644
--- a/src/components/workshop/Workshop2025Section.astro
+++ b/src/components/workshop/Workshop2025Section.astro
@@ -5,7 +5,7 @@ import type { ComponentProps } from 'astro/types'
export interface Item
extends Omit
{
items2.map(({ date, ...item }) => (
-
diff --git a/src/components/workshop/WorkshopCard.astro b/src/components/workshop/WorkshopCard.astro
index 39e9d39..48e9285 100644
--- a/src/components/workshop/WorkshopCard.astro
+++ b/src/components/workshop/WorkshopCard.astro
@@ -4,7 +4,7 @@ import type { OUTechsCirclesName } from '@/@types/ou-techs-members'
import { circles } from '../ou-techs/CircleList.astro'
interface Props {
title: string
- date: string
+ date?: string
description: string
place?: string
circleNames?: OUTechsCirclesName[]
@@ -42,10 +42,22 @@ const clubInfos = circles.filter((c) => circleNames?.includes(c.name))
}
-
{description}