-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2044aa0
commit d9d7d5b
Showing
7 changed files
with
99 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import React from "react"; | ||
import Section from "@/app/lib/components/primitives/Section"; | ||
import Subpage from "@/app/lib/components/templates/Subpage"; | ||
import Link from "@/app/lib/components/primitives/Link"; | ||
import { createMetadata } from "@/app/lib/utils/createMetadata"; | ||
import Persona from "@/app/lib/components/Persona"; | ||
import { KEYNOTE_SPEAKERS } from "@/app/lib/config/keynote.config"; | ||
import { makeAttributeSafe } from "@/app/lib/utils/basics"; | ||
|
||
export const metadata = createMetadata({ title: "Keynote Speakers" }); | ||
const excludeSpecialChars = new RegExp('[^"“]'); | ||
|
||
export default function AcceptedPapers() { | ||
return ( | ||
<Subpage title={"Keynote Speaker"} noTOC={false}> | ||
<p className="-mb-12"> | ||
{`We are delighted to announce that this year's keynote address will be | ||
given by Dr. Chieko Asakawa, recipient of the `} | ||
<Link | ||
href={ | ||
"https://www.sigaccess.org/2024/08/chieko-asakawa-outstanding-contribution-2024/" | ||
} | ||
> | ||
{`2024 SIGACCESS Award for Outstanding Contributions to Computing and | ||
Accessibility`} | ||
</Link> | ||
{`. This award | ||
recognizes individuals who have made significant and lasting | ||
contributions to the development of computing technologies that improve | ||
the accessibility of media and services to people with disabilities.`} | ||
</p> | ||
<Section title={"Dr. Chieko Asakawa"}> | ||
<div className="mb-8"> | ||
<Persona wide {...KEYNOTE_SPEAKERS[0]} /> | ||
</div> | ||
<h2 | ||
id={makeAttributeSafe( | ||
"A Journey in Accessibility: Digital-World to Real-World" | ||
)} | ||
>{`A Journey in Accessibility: Digital-World to Real-World`}</h2> | ||
<p> | ||
{`Progress in accessibility technology has dramatically improved the | ||
quality of life for people with disabilities. The SIGACCESS community | ||
has played a crucial role in this progress since its establishment in | ||
the late 1990s. This community connect researchers and share, with the | ||
world, innovative ideas based on the latest science and technology.`} | ||
</p> | ||
<p> | ||
{`My journey with SIGACCESS began in 1998, inspired by the technical | ||
challenges encountered during the development of the world's first | ||
practical voice web browser, the "IBM Home Page Reader." This work | ||
later received the SIGACCESS ASSETS Paper Impact Award in 2013. After | ||
more than a decade of research in digital accessibility, I shifted my | ||
focus to a daunting, unsolved challenge: enabling independent movement | ||
in urban environments for people with visual impairments—the challenge | ||
of real-world accessibility.`} | ||
</p> | ||
<p> | ||
{` In this address, I will give a brief overview of my research in | ||
digital accessibility, look at my work on an autonomous navigation | ||
robot, the "AI suitcase”, and note the importance of social acceptance | ||
to successfully implement such new technology.`} | ||
</p> | ||
<p> | ||
{`I will then address the tremendous potential we SIGACCESS members | ||
possess, to practically apply the latest science and technology | ||
research, thereby steadily improving the quality of life for all | ||
people.`} | ||
</p> | ||
</Section> | ||
<Section | ||
title={"SIGACCESS Outstanding Contribution Award"} | ||
spacing={"bottom-only"} | ||
> | ||
<p>{`To read more about Chieko’s SIGACCESS Outstanding Contribution Award, please see: `}</p> | ||
<Link | ||
href={ | ||
"https://www.sigaccess.org/2024/08/chieko-asakawa-outstanding-contribution-2024/" | ||
} | ||
>{`https://www.sigaccess.org/2024/08/chieko-asakawa-outstanding-contribution-2024/.`}</Link> | ||
</Section> | ||
</Subpage> | ||
); | ||
} |