Skip to content

Commit 66bd9c9

Browse files
committed
Updated CHI 2025 information.
1 parent 243922b commit 66bd9c9

File tree

8 files changed

+25
-41
lines changed

8 files changed

+25
-41
lines changed

app/App.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@ import { Acknowledgments } from "./sections/Acknowledgments";
33
import { Cite } from "./sections/Cite";
44
import { Abstract } from "./sections/Abstract";
55
import { Footer } from "./sections/Footer";
6-
import { Architecture } from "./sections/Architecture";
7-
import { Mockup } from "./sections/Mockup";
86
import { Demo } from "./sections/Demo";
97
import { Video } from "./sections/Video";
108

119
export function App() {
1210
return (<>
1311
<main className="container mx-auto px-4 sm:px-12 pt-6">
1412
<div>
15-
<div className="font-bold text-lg text-[#4592ec] mb-3">Research Work</div>
13+
<div className="font-bold text-lg text-[#4592ec] mb-3">CHI 2025 Paper</div>
1614
<img className="mb-2 h-[95px] ml-[-30px] md:h-[110px] md:ml-[-37px]" src={require("../public/images/logos/aacesstalk-logo.svg")}/>
1715
<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>
1816
</div>

app/sections/Abstract.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export const Abstract = () => {
1616
<ArxivIcon size={20}/>
1717
<span>arXiv</span>
1818
</a>
19-
<a className="icon-label-button" href="#">
19+
<a className="icon-label-button" href="https://github.com/naver-ai/aacesstalk-monorepo" target="_blank">
2020
<GithubIcon size={28}/>
21-
<span>Source code (Coming Soon)</span>
21+
<span>Source code</span>
2222
</a>
2323
</div>
2424
</Section>

app/sections/Architecture.tsx

-12
This file was deleted.

app/sections/Cite.tsx

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
import { Section } from "../components/Section"
22

3-
const bibTex = "@misc{choi2024aacesstalk,<br/>\n\
3+
const bibTex = "@inproceedings{choi2025aacesstalk,<br/>\n\
44
&emsp;&emsp;title={AACessTalk: Fostering Communication between Minimally Verbal Autistic Children and Parents with Contextual Guidance and Card Recommendation},<br/>\n\
55
&emsp;&emsp;author={Dasom Choi and SoHyun Park and Kyungah Lee and Hwajung Hong and Young-Ho Kim},<br/>\n\
6-
&emsp;&emsp;year={2024},<br/>\n\
7-
&emsp;&emsp;eprint={2409.09641},<br/>\n\
8-
&emsp;&emsp;archivePrefix={arXiv},<br/>\n\
9-
&emsp;&emsp;primaryClass={cs.HC},<br/>\n\
10-
&emsp;&emsp;url={https://arxiv.org/abs/2409.09641},<br/>\n\
6+
&emsp;&emsp;year = {2025},<br/>\n\
7+
&emsp;&emsp;publisher = {Association for Computing Machinery},<br/>\n\
8+
&emsp;&emsp;address = {New York, NY, USA},<br/>\n\
9+
&emsp;&emsp;url = {https://doi.org/10.1145/3706598.3713792},<br/>\n\
10+
&emsp;&emsp;doi = {10.1145/3706598.3713792},<br/>\n\
11+
&emsp;&emsp;booktitle = {Proceedings of the 2025 CHI Conference on Human Factors in Computing Systems},<br/>\n\
12+
&emsp;&emsp;location = {Yokohama, Japan},<br/>\n\
13+
&emsp;&emsp;series = {CHI '25}<br/>\n\
1114
}"
1215

1316
export const Cite = () => {
1417
return <Section title="Citing This Work">
1518
<div className="border-y-2 border-purple-500/30 py-3">
1619
<div>Dasom Choi, SoHyun Park, Kyungah Lee, Hwajung Hong, and Young-Ho Kim. 2024.</div>
1720
<div className="font-bold">AACessTalk: Fostering Communication between Minimally Verbal Autistic Children and Parents with Contextual Guidance and Card Recommendation.</div>
18-
<div>https://doi.org/10.48550/arXiv.2409.09641</div>
21+
<div>In CHI Conference on Human Factors in Computing Systems (CHI ’25)</div>
22+
<div>https://doi.org/10.1145/3706598.3713792</div>
1923
</div>
2024
<div className="mt-4">
2125
<div className="font-bold mb-1">BibTeX</div>

app/sections/Footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const Footer = () => {
22
return <div className="p-4 border-t-2 border-purple-600/30">
33
<div className="container mx-auto">
4-
<div className="text-sm text-center text-black">Copyright © 2024 NAVER AI Lab. All Rights Reserved.</div>
4+
<div className="text-sm text-center text-black">Copyright © 2024-2025 NAVER AI Lab. All Rights Reserved.</div>
55
</div>
66
</div>
77
}

app/sections/Mockup.tsx

-5
This file was deleted.

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"prismjs-bibtex": "^2.1.0",
2020
"react": "^18",
2121
"react-dom": "^18",
22-
"react-lottie": "^1.2.4",
22+
"react-lottie": "^1.2.10",
2323
"tailwindcss": "^3.4.1"
2424
},
2525
"devDependencies": {

0 commit comments

Comments
 (0)