diff --git a/daily-thought-frontend/src/components/question/Question.tsx b/daily-thought-frontend/src/components/question/Question.tsx new file mode 100644 index 0000000000000000000000000000000000000000..955850ca3c8f9f6f7c046892e3727405bdd7e0eb --- /dev/null +++ b/daily-thought-frontend/src/components/question/Question.tsx @@ -0,0 +1,14 @@ +const Question = () => { + + return ( + <div className="max-w-2xl lg:max-w-4xl border border-pink-400 border-2 p-5 rounded-full m-3"> + <blockquote className="text-center text-xl font-semibold leading-8 text-pink-400 sm:text-2xl sm:leading-9"> + <p> + <span className="text-green-400 p-2 text-5xl">"</span>Lorem ipsum dolor sit amet consectetur adipisicing elit.<span className="text-green-400 p-2 text-5xl">"</span> + </p> + </blockquote> + </div> + ) +} + +export default Question; \ No newline at end of file