Skip to content

Commit e726769

Browse files
committed
Update event details.
1 parent eefa7ab commit e726769

File tree

3 files changed

+67
-14
lines changed

3 files changed

+67
-14
lines changed

src/pages/events/esweek-2021-tutorial.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const VideoCard = ({ section }: { section: VideoSection }) => (
225225
</div>
226226
);
227227

228-
export default function ESWEEKTutorial(): JSX.Element {
228+
export default function ESWEEKTutorial() {
229229
return (
230230
<Layout
231231
title="ESWEEK 2021 Tutorial"

src/pages/events/event-page.module.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,38 @@
142142
font-style: italic;
143143
}
144144

145+
/* Dates list */
146+
.datesList {
147+
list-style: none;
148+
padding-left: 0;
149+
margin-bottom: 0;
150+
}
151+
152+
.datesList li {
153+
padding: 12px 0;
154+
border-bottom: 1px solid var(--ifm-color-emphasis-200);
155+
}
156+
157+
.datesList li:last-child {
158+
border-bottom: none;
159+
padding-bottom: 0;
160+
}
161+
162+
.datesList li:first-child {
163+
padding-top: 0;
164+
}
165+
166+
/* Organizers list */
167+
.organizersList {
168+
list-style: none;
169+
padding-left: 0;
170+
margin-bottom: 0;
171+
}
172+
173+
.organizersList li {
174+
padding: 8px 0;
175+
}
176+
145177
/* Responsive adjustments */
146178
@media (max-width: 768px) {
147179
.heroTitle {

src/pages/events/recps-2026.tsx

Lines changed: 34 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Link from "@docusaurus/Link";
55

66
import styles from "./event-page.module.css";
77

8-
export default function ReCPS2026(): JSX.Element {
8+
export default function ReCPS2026() {
99
return (
1010
<Layout
1111
title="ReCPS Workshop at DATE 2026"
@@ -78,37 +78,58 @@ export default function ReCPS2026(): JSX.Element {
7878
</div>
7979
</div>
8080

81-
{/* Placeholder Sections */}
81+
{/* Call for Papers & Important Dates */}
8282
<div className="section sectionAlt">
8383
<div className="container">
8484
<div className="row">
85-
<div className="col col--4">
86-
<div className={clsx("card", styles.placeholderCard)}>
85+
<div className="col col--8 col--offset-2">
86+
<div className={clsx("card", "margin-bottom--lg")}>
8787
<div className="card__header">
8888
<Heading as="h3">📝 Call for Papers</Heading>
8989
</div>
9090
<div className="card__body">
91-
<p>Coming soon</p>
91+
<p>
92+
We invite submissions of research papers and demo abstracts
93+
on topics related to reactive cyber-physical systems,
94+
including but not limited to design methodologies,
95+
simulation techniques, and coordination frameworks.
96+
</p>
97+
<p>More details on submission guidelines coming soon.</p>
9298
</div>
9399
</div>
94-
</div>
95-
<div className="col col--4">
96-
<div className={clsx("card", styles.placeholderCard)}>
100+
101+
<div className={clsx("card", "margin-bottom--lg")}>
97102
<div className="card__header">
98103
<Heading as="h3">📅 Important Dates</Heading>
99104
</div>
100105
<div className="card__body">
101-
<p>Coming soon</p>
106+
<ul className={styles.datesList}>
107+
<li>
108+
<strong>February 16, 2026:</strong> Research papers and
109+
demo abstracts submission deadline
110+
</li>
111+
<li>
112+
<strong>March 2, 2026:</strong> Notification of acceptance
113+
</li>
114+
</ul>
102115
</div>
103116
</div>
104-
</div>
105-
<div className="col col--4">
106-
<div className={clsx("card", styles.placeholderCard)}>
117+
118+
<div className="card">
107119
<div className="card__header">
108120
<Heading as="h3">👥 Organizers</Heading>
109121
</div>
110122
<div className="card__body">
111-
<p>Coming soon</p>
123+
<ul className={styles.organizersList}>
124+
<li>
125+
<strong>General Chair:</strong> Hokeun Kim (Arizona State
126+
University, United States)
127+
</li>
128+
<li>
129+
<strong>Program Chair:</strong> Sebastiano Gaiardelli
130+
(University of Verona, Italy)
131+
</li>
132+
</ul>
112133
</div>
113134
</div>
114135
</div>

0 commit comments

Comments
 (0)