From 46f9721650df11680f0b1d745b1a9562404b80cc Mon Sep 17 00:00:00 2001 From: Wissarut Kanasub Date: Mon, 6 Nov 2023 18:54:45 +0700 Subject: [PATCH] Start Eisenhower matrix --- .../the_eisenhower_matrix/Eisenhower.jsx | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 frontend/src/components/the_eisenhower_matrix/Eisenhower.jsx diff --git a/frontend/src/components/the_eisenhower_matrix/Eisenhower.jsx b/frontend/src/components/the_eisenhower_matrix/Eisenhower.jsx new file mode 100644 index 0000000..890aae0 --- /dev/null +++ b/frontend/src/components/the_eisenhower_matrix/Eisenhower.jsx @@ -0,0 +1,50 @@ +import React from 'react'; + +// Styles for row headers +const rowHeaderStyle = "bg-pink-300 text-pink-700 p-4 rounded-lg font-semibold text-lg shadow-md"; + +// Styles for column headers +const columnHeaderStyle = "bg-blue-300 text-blue-700 p-4 rounded-lg font-semibold text-lg shadow-md"; + +// Styles for content cells in green +const greenContextStyle = "bg-green-300 text-green-700 p-4 rounded-lg text-lg shadow-md"; + +// Styles for content cells in yellow +const yellowContextStyle = "bg-yellow-300 text-yellow-700 p-4 rounded-lg text-lg shadow-md"; + +function Eisenhower() { + return ( +
+
+ Eisenhower Matrix +
+ {/* Row Headers */} +
Important
+
Not Important
+ + {/* Column Headers */} +
Urgent
+ + {/* Content Cells */} +
+ Urgent & Important +
+
+ Urgent & Not Important +
+ + {/* Column Headers */} +
Not Urgent
+ + {/* Content Cells */} +
+ Not Urgent & Important +
+
+ Not Urgent & Not Important +
+
+ ); +} + +export default Eisenhower;