Skip to content

Commit 9e6875a

Browse files
committed
Mentioned a best paper award.
1 parent 3ffc495 commit 9e6875a

File tree

3 files changed

+41
-22
lines changed

3 files changed

+41
-22
lines changed

app/App.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ import { Abstract } from "./sections/Abstract";
55
import { Footer } from "./sections/Footer";
66
import { Demo } from "./sections/Demo";
77
import { Video } from "./sections/Video";
8+
import { TrophyIcon } from "@heroicons/react/20/solid";
89

910
export function App() {
1011
return (<>
1112
<main className="container mx-auto px-4 sm:px-12 pt-6">
1213
<div>
13-
<div className="font-bold text-lg text-[#4592ec] mb-3">CHI 2025 Paper</div>
14+
<div className="font-bold text-lg text-[#4592ec] mb-3 flex items-center gap-2">
15+
<TrophyIcon className="w-6 h-6 text-[#4592ec]"/>
16+
<span>CHI 2025 Best Paper Award</span>
17+
</div>
1418
<img className="mb-2 h-[95px] ml-[-30px] md:h-[110px] md:ml-[-37px]" src={require("../public/images/logos/aacesstalk-logo.svg")}/>
1519
<div className="font-light leading-8 sm:leading-[2.5rem] text-2xl sm:text-3xl">Fostering Communication between <strong>Minimally Verbal Autistic Children</strong> and <strong>Parents</strong> with Contextual Guidance and Card Recommendation</div>
1620
</div>

app/sections/Abstract.tsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
import { Section } from "../components/Section"
22
import { ArxivIcon, GithubIcon } from "../components/icons"
3-
import { NewspaperIcon } from "@heroicons/react/20/solid"
3+
import { NewspaperIcon, TrophyIcon } from "@heroicons/react/20/solid"
44

55
export const Abstract = () => {
66
return <Section title="Abstract" className="flex-1 pt-0 md:pt-12">
77
<p>
88
As minimally verbal autistic (MVA) children communicate with parents through few words and nonverbal cues, parents often struggle to encourage their children to express subtle emotions and needs and to grasp their nuanced signals. We present AACessTalk, a tablet-based, AI-mediated communication system that facilitates meaningful exchanges between an MVA child and a parent. AACessTalk provides real-time guides to the parent to engage the child in conversation and, in turn, recommends contextual vocabulary cards to the child. Through a two-week deployment study with 11 MVA child-parent dyads, we examine how AACessTalk fosters everyday conversation practice and mutual engagement. Our findings show high engagement from all dyads, leading to increased frequency of conversation and turn-taking. AACessTalk also encouraged parents to explore their own interaction strategies and empowered the children to have more agency in communication. We discuss the implications of designing technologies for balanced communication dynamics in parent-MVA child interaction.
99
</p>
10+
11+
<div className="flex items-center gap-2 my-4">
12+
<TrophyIcon className="w-6 h-6 text-pink-600"/>
13+
<span className="font-semibold text-pink-600 text-xl">Best Paper Award at CHI 2025</span>
14+
</div>
15+
1016
<div className="flex flex-wrap gap-4 mt-4">
1117
<a className="icon-label-button bg-teal-500 pl-4" aria-disabled={true} href={"./public/aacesstalk-chi25.pdf"} target="_blank">
1218
<NewspaperIcon className="w-6 h-6 text-white"/>
@@ -21,5 +27,6 @@ export const Abstract = () => {
2127
<span>Source code</span>
2228
</a>
2329
</div>
30+
2431
</Section>
2532
}

package-lock.json

+28-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)