diff --git a/frontend/src/upload/Upload.tsx b/frontend/src/upload/Upload.tsx new file mode 100644 index 00000000..a2af7c22 --- /dev/null +++ b/frontend/src/upload/Upload.tsx @@ -0,0 +1,37 @@ +import { useState } from 'react'; + +export default function Upload() { + // return null; + + const [docName, setDocName] = useState(''); + return ( +
+
+

Upload New Documentation

+ setDocName(e.target.value)} + > +
+ Name +
+
+ +
+
+ + +
+
+
+ ); +} + +// TODO: sanitize all inputs diff --git a/frontend/tailwind.config.cjs b/frontend/tailwind.config.cjs index 2c44007a..ca65c28b 100644 --- a/frontend/tailwind.config.cjs +++ b/frontend/tailwind.config.cjs @@ -16,10 +16,13 @@ module.exports = { 'gray-2000': 'rgba(0, 0, 0, 0.5)', 'gray-3000': 'rgba(243, 243, 243, 1)', 'gray-4000': '#949494', + 'gray-5000': '#BBBBBB', 'red-1000': 'rgb(254, 202, 202)', 'red-2000': '#F44336', 'red-3000': '#621B16', 'blue-1000': '#7D54D1', + 'blue-2000': '#002B49', + 'blue-3000': '#4B02E2', }, }, },