diff --git a/public/technical_supporters/akihiro.fuji.jpg b/public/technical_supporters/akihiro.fuji.jpg new file mode 100644 index 0000000..ad3d678 Binary files /dev/null and b/public/technical_supporters/akihiro.fuji.jpg differ diff --git a/public/technical_supporters/shinji.yokoi.jpg b/public/technical_supporters/shinji.yokoi.jpg new file mode 100644 index 0000000..51feb5d Binary files /dev/null and b/public/technical_supporters/shinji.yokoi.jpg differ diff --git a/public/technical_supporters/shoko.ito.jpg b/public/technical_supporters/shoko.ito.jpg new file mode 100644 index 0000000..f713543 Binary files /dev/null and b/public/technical_supporters/shoko.ito.jpg differ diff --git a/public/technical_supporters/tetsu.furukawa.jpg b/public/technical_supporters/tetsu.furukawa.jpg new file mode 100644 index 0000000..ce9912c Binary files /dev/null and b/public/technical_supporters/tetsu.furukawa.jpg differ diff --git a/src/app/routes/Home.tsx b/src/app/routes/Home.tsx index e176fb3..acce149 100644 --- a/src/app/routes/Home.tsx +++ b/src/app/routes/Home.tsx @@ -32,6 +32,7 @@ import homeData from "../../data/home.json"; import programData from "../../data/program.json"; import scheduleData from "../../data/schedule.json"; import organizersData from "../../data/organizers.json"; +import technicalSupportersData from "../../data/technicalSupporters.json"; import supportersData from "../../data/supporters.json"; import contactData from "../../data/contact.json"; import callForPapersData from "../../data/callForPapers.json"; @@ -350,6 +351,39 @@ function Home() { + {/* Technical Supporters */} +
+
+

+ Technical Supporters +

+
+
+ {technicalSupportersData.technicalSupporters.map( + (supporter, index) => ( + + + {supporter.name} + {supporter.affiliation} + + +
+
+ {`Photo +
+
+
+
+ ), + )} +
+
+ {/* Supporters */}
diff --git a/src/data/schedule.json b/src/data/schedule.json index 35e4095..711cfb4 100644 --- a/src/data/schedule.json +++ b/src/data/schedule.json @@ -66,7 +66,7 @@ "time": "11:00 - 11:40", "session": "Invited Talk 4", "presenter": "Kristen Grauman", - "title": "", + "title": "Beyond Words: Capturing the Physical Nature of Human Activity in Video", "slides": "" }, { @@ -112,7 +112,7 @@ { "time": "15:50 - 16:00", "session": "Closing remarks", - "presenter": "", + "presenter": "Yoshihiro Fukuhara", "slides": "" }, { diff --git a/src/data/technicalSupporters.json b/src/data/technicalSupporters.json new file mode 100644 index 0000000..3395f7f --- /dev/null +++ b/src/data/technicalSupporters.json @@ -0,0 +1,24 @@ +{ + "technicalSupporters": [ + { + "name": "Tetsu Furukawa", + "affiliation": "AIST Solutions", + "photo": "/technical_supporters/tetsu.furukawa.jpg" + }, + { + "name": "Akihiro Fuji", + "affiliation": "AIST Solutions", + "photo": "/technical_supporters/akihiro.fuji.jpg" + }, + { + "name": "Shoko Ito", + "affiliation": "AIST Solutions", + "photo": "/technical_supporters/shoko.ito.jpg" + }, + { + "name": "Shinji Yokoi", + "affiliation": "AIST Solutions", + "photo": "/technical_supporters/shinji.yokoi.jpg" + } + ] +}