Skip to content

Commit 3c1325b

Browse files
CopilotAdez017
andcommitted
Improve text visibility on interview prep cards - part 2
Co-authored-by: Adez017 <[email protected]>
1 parent c2cccdd commit 3c1325b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/pages/interview-prep/CompaniesTab.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ const CompaniesTab: React.FC<CompaniesTabProps> = ({ companyTips = [] }) => {
486486
{i + 1}
487487
</span>
488488
</div>
489-
<span className="leading-relaxed text-gray-700 dark:text-gray-300">
489+
<span className="leading-relaxed text-gray-800 dark:text-gray-200">
490490
{tip}
491491
</span>
492492
</motion.li>
@@ -558,7 +558,7 @@ const CompaniesTab: React.FC<CompaniesTabProps> = ({ companyTips = [] }) => {
558558
animate={{ opacity: 1, y: 0 }}
559559
transition={{ duration: 0.3 }}
560560
>
561-
<p className="text-sm leading-relaxed text-gray-700 dark:text-gray-300">
561+
<p className="text-sm leading-relaxed text-gray-800 dark:text-gray-200">
562562
{item.answer}
563563
</p>
564564
</motion.div>
@@ -590,7 +590,7 @@ const CompaniesTab: React.FC<CompaniesTabProps> = ({ companyTips = [] }) => {
590590
Community Contributors Needed!
591591
</h5>
592592
</div>
593-
<p className="mb-6 leading-relaxed text-gray-700 dark:text-gray-300">
593+
<p className="mb-6 leading-relaxed text-gray-800 dark:text-gray-200">
594594
Help keep {company.company}'s interview information
595595
current! Share recent questions, tips, or insights
596596
you've encountered to help fellow candidates
@@ -672,7 +672,7 @@ const CompaniesTab: React.FC<CompaniesTabProps> = ({ companyTips = [] }) => {
672672
<span className="mr-4 text-5xl">🤝</span>
673673
Join Our Interview Prep Community
674674
</h3>
675-
<p className="text-xl text-gray-600 dark:text-gray-300">
675+
<p className="text-xl text-gray-700 dark:text-gray-200">
676676
Help build the most comprehensive company interview resource and
677677
accelerate your career growth
678678
</p>
@@ -744,10 +744,10 @@ const CompaniesTab: React.FC<CompaniesTabProps> = ({ companyTips = [] }) => {
744744
<h4 className="mb-3 text-lg font-bold text-gray-900 dark:text-white">
745745
{item.title}
746746
</h4>
747-
<p className="mb-4 text-sm leading-relaxed text-gray-600 dark:text-gray-300">
747+
<p className="mb-4 text-sm leading-relaxed text-gray-700 dark:text-gray-200">
748748
{item.description}
749749
</p>
750-
<div className="inline-flex items-center rounded-full bg-gray-100 px-3 py-1 text-xs font-semibold text-gray-700 dark:bg-gray-700 dark:text-gray-300">
750+
<div className="inline-flex items-center rounded-full bg-gray-100 px-3 py-1 text-xs font-semibold text-gray-800 dark:bg-gray-700 dark:text-gray-200">
751751
{item.benefit}
752752
</div>
753753
</motion.div>

src/pages/interview-prep/PracticeTab.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const PracticeTab: React.FC<PracticeTabProps> = ({
275275
>
276276
Mock Interview Practice
277277
</motion.h2>
278-
<p className="text-xl leading-relaxed text-gray-700 dark:text-gray-300">
278+
<p className="text-xl leading-relaxed text-gray-800 dark:text-gray-200">
279279
Simulate real interview scenarios with our interactive practice
280280
sessions. Track your progress, time your responses, and get
281281
instant feedback to improve your interview performance.
@@ -300,7 +300,7 @@ const PracticeTab: React.FC<PracticeTabProps> = ({
300300
<h3 className="mb-3 text-xl font-bold text-gray-900 dark:text-white">
301301
Technical Deep Dive
302302
</h3>
303-
<p className="mb-4 leading-relaxed text-gray-600 dark:text-gray-300">
303+
<p className="mb-4 leading-relaxed text-gray-700 dark:text-gray-200">
304304
Explore comprehensive technical resources, coding patterns,
305305
and algorithm practice.
306306
</p>
@@ -337,7 +337,7 @@ const PracticeTab: React.FC<PracticeTabProps> = ({
337337
<h3 className="mb-3 text-xl font-bold text-gray-900 dark:text-white">
338338
Behavioral Mastery
339339
</h3>
340-
<p className="mb-4 leading-relaxed text-gray-600 dark:text-gray-300">
340+
<p className="mb-4 leading-relaxed text-gray-700 dark:text-gray-200">
341341
Master the STAR method and practice storytelling for
342342
behavioral interviews.
343343
</p>
@@ -375,7 +375,7 @@ const PracticeTab: React.FC<PracticeTabProps> = ({
375375
<h3 className="mb-3 text-xl font-bold text-gray-900 dark:text-white">
376376
Company Research
377377
</h3>
378-
<p className="mb-4 leading-relaxed text-gray-600 dark:text-gray-300">
378+
<p className="mb-4 leading-relaxed text-gray-700 dark:text-gray-200">
379379
Research specific companies, their interview processes, and
380380
preparation strategies.
381381
</p>
@@ -1067,7 +1067,7 @@ const PracticeTab: React.FC<PracticeTabProps> = ({
10671067
<h4 className="mb-3 text-lg font-black text-gray-900 dark:text-white">
10681068
{feature.title}
10691069
</h4>
1070-
<p className="text-sm leading-relaxed font-medium text-gray-600 dark:text-gray-300">
1070+
<p className="text-sm leading-relaxed font-medium text-gray-700 dark:text-gray-200">
10711071
{feature.desc}
10721072
</p>
10731073
</motion.div>

0 commit comments

Comments
 (0)