Skip to content

Commit 91d778c

Browse files
committed
feat: convert email addresses to clickable mailto links in TitleSlide and ConclusionDisplay components for improved accessibility
1 parent 1d23768 commit 91d778c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/TitleSlide.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const TitleSlide = () => {
2424
<div className="mt-16 space-y-2">
2525
<p className="text-xl text-blue-100 font-medium">Jonathan Aaron Rocha</p>
2626
<p className="text-lg text-blue-200">ENGL 5374 - Research Methods in Graduate Studies</p>
27-
<p className="text-lg text-blue-200">jr159@my.tamuct.edu</p>
27+
<a href="mailto:jr159@my.tamuct.edu" className="text-lg text-blue-200 hover:text-blue-300 transition-colors">jr159@my.tamuct.edu</a>
2828
</div>
2929

3030
</div>

src/components/conclusion-summary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const ConclusionDisplay: React.FC = () => {
8282
{/* Citation */}
8383
<div className="mt-8 text-center text-slate-500 text-sm">
8484
<p>Jonathan Aaron Rocha</p>
85-
<p>jr159@my.tamuct.edu</p>
85+
<p><a href="mailto:jr159@my.tamuct.edu" className="hover:text-indigo-600 transition-colors">jr159@my.tamuct.edu</a></p>
8686
<p>ENGL 5374 - Research Methods in Graduate Studies</p>
8787
</div>
8888

0 commit comments

Comments
 (0)