generated from dwd/boilarplate-remix-tailwind-antd
13 lines
624 B
JavaScript
13 lines
624 B
JavaScript
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>
|
|
)
|
|
} |