From 8733bc8f7e67c98e0b5be37205ee763138e1efb2 Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Tue, 14 Mar 2023 19:03:18 +0000 Subject: [PATCH] Added basic question component --- .../src/components/question/Question.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 daily-thought-frontend/src/components/question/Question.tsx 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 00000000..955850ca --- /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 -- GitLab