This commit is contained in:
Suvodip
2024-08-02 18:19:11 +05:30
parent c1d6350b2b
commit 768a1fc0d9
7 changed files with 370 additions and 132 deletions

View File

@@ -0,0 +1,13 @@
export default function QuizHeader(){
return(
<section className="container-fluid bg-[#000] ">
<div className="flex flex-row justify-center gap-x-8 py-6">
<p className="text-[42px] w-[42px] h-[31px]"></p>
<div className="flex flex-col justify-center place-items-center">
<p className="text-[#FFF] text-[24px] font-[700]"> Take an AI Generative Quiz</p>
<p className="text-[#FFF] text-[16px] font-[400]">Convert any text into an interactive quiz session</p>
</div>
</div>
</section>
)
}