@@ -97,8 +97,8 @@ const Exam: NextPage<{ searchParams: { url: string; name: string } }> = ({
9797 // Block access if trial expired
9898 if ( isAccessBlocked ) {
9999 return (
100- < div className = "py-10 px-5 mb-6 mx-auto w-[90vw] lg:w-[60vw] 2xl:w-[45%] bg-slate- 800 border-2 border-slate -700 rounded-lg text-center" >
101- < div className = "text-red-400 text-lg mb-4" >
100+ < div className = "py-10 px-5 mb-6 mx-auto w-[90vw] lg:w-[60vw] 2xl:w-[45%] bg-white dark:bg-gray- 800 border-2 border-gray-200 dark:border-gray -700 rounded-lg text-center" >
101+ < div className = "text-red-500 dark:text-red- 400 text-lg mb-4" >
102102 ⏰ Trial expired. Please sign in to continue taking exams.
103103 </ div >
104104 < button
@@ -117,7 +117,7 @@ const Exam: NextPage<{ searchParams: { url: string; name: string } }> = ({
117117 const numberOfQuestions = data . randomQuestions . length || 0 ;
118118
119119 return (
120- < div className = "py-10 px-5 mb-6 mx-auto w-[90vw] lg:w-[60vw] 2xl:w-[45%] bg-slate- 800 border-2 border-slate- 700 rounded-lg" >
120+ < div className = "py-10 px-5 mb-6 mx-auto w-[90vw] lg:w-[60vw] 2xl:w-[45%] bg-white dark:bg-gray- 800 border-2 border-gray-200 dark:border-gray- 700 rounded-lg mt-8 " >
121121 { isInTrial && (
122122 < div className = "mb-6 p-4 bg-amber-600/20 border border-amber-600/40 rounded-lg" >
123123 < div className = "flex items-center gap-2 text-amber-300" >
@@ -142,13 +142,13 @@ const Exam: NextPage<{ searchParams: { url: string; name: string } }> = ({
142142 ) }
143143 < div >
144144 < div className = "px-2 sm:px-10 w-full flex flex-row justify-between items-center" >
145- < p className = "text-white font-bold text-sm sm:text-2xl" >
145+ < p className = "text-gray-900 dark:text- white font-bold text-sm sm:text-2xl" >
146146 ✅ { countAnswered } /{ numberOfQuestions }
147147 </ p >
148- < h1 className = "text-white font-bold text-lg sm:text-3xl" >
148+ < h1 className = "text-gray-900 dark:text- white font-bold text-lg sm:text-3xl" >
149149 PRACTICE EXAM
150150 </ h1 >
151- < p className = "text-white font-bold text-sm sm:text-2xl" >
151+ < p className = "text-gray-900 dark:text- white font-bold text-sm sm:text-2xl" >
152152 { remainingTime }
153153 </ p >
154154 </ div >
@@ -202,7 +202,7 @@ const Exam: NextPage<{ searchParams: { url: string; name: string } }> = ({
202202 c0.53,0,0.97,0.43,0.97,0.97V29.35z"
203203 />
204204 </ svg >
205- < p className = "text-white text-center pt-6 px-6" >
205+ < p className = "text-gray-900 dark:text- white text-center pt-6 px-6" >
206206 Practice Exam help you practice skills, assess your knowledge,
207207 and identify the areas where you need additional preparation
208208 to accelerate your chances of succeeding on certification
@@ -211,7 +211,7 @@ const Exam: NextPage<{ searchParams: { url: string; name: string } }> = ({
211211 are likely to experience on Azure Fundamentals real exam.
212212 </ p >
213213 </ div >
214- < p className = "text-white font-bold text-xl text-center pt-20 px-6 mb-40" >
214+ < p className = "text-gray-900 dark:text- white font-bold text-xl text-center pt-20 px-6 mb-40" >
215215 This Practice Exam contains { numberOfQuestions } random questions
216216 (seen in upper left corner) and has a completion time limit of{ " " }
217217 { remainingTime . split ( ":" ) [ 0 ] } minutes (seen in upper right
0 commit comments