Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/technical_supporters/akihiro.fuji.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/technical_supporters/shinji.yokoi.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/technical_supporters/shoko.ito.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/technical_supporters/tetsu.furukawa.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions src/app/routes/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -350,6 +351,39 @@ function Home() {
</div>
</section>

{/* Technical Supporters */}
<section id="technical-supporters" className="space-y-6">
<div className="space-y-2">
<h2 className="text-2xl sm:text-3xl tracking-tighter">
Technical Supporters
</h2>
</div>
<div className="grid gap-6 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
{technicalSupportersData.technicalSupporters.map(
(supporter, index) => (
<Card key={index}>
<CardHeader>
<CardTitle>{supporter.name}</CardTitle>
<CardDescription>{supporter.affiliation}</CardDescription>
</CardHeader>
<CardContent>
<div className="space-y-4">
<div className="aspect-square bg-muted rounded-md flex items-center justify-center">
<img
src={supporter.photo}
alt={`Photo of ${supporter.name}`}
className="object-cover w-full h-full"
loading="lazy"
/>
</div>
</div>
</CardContent>
</Card>
),
)}
</div>
</section>

{/* Supporters */}
<section id="supporters" className="space-y-6">
<div className="space-y-2">
Expand Down
4 changes: 2 additions & 2 deletions src/data/schedule.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": ""
},
{
Expand Down Expand Up @@ -112,7 +112,7 @@
{
"time": "15:50 - 16:00",
"session": "Closing remarks",
"presenter": "",
"presenter": "Yoshihiro Fukuhara",
"slides": ""
},
{
Expand Down
24 changes: 24 additions & 0 deletions src/data/technicalSupporters.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
Loading