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 ( +