About the role
- -
- {aboutSection.map((item) => {
- return (
-
- );
- })}
-
-
-
- );
-};
-
-export default AboutSectionElement;
diff --git a/src/opportunities/components/HorizontalIconButton.tsx b/src/opportunities/components/HorizontalIconButton.tsx
index 4667eb21..bd282ac8 100644
--- a/src/opportunities/components/HorizontalIconButton.tsx
+++ b/src/opportunities/components/HorizontalIconButton.tsx
@@ -1,8 +1,8 @@
import React from "react";
interface HorizontalIconButtonProps {
- children?: React.ReactNode;
- onClick: (arg?: React.ReactNode) => void;
+ children: string;
+ onClick: (arg: string) => void;
icon: React.ReactNode;
special: boolean;
}
diff --git a/src/opportunities/components/JobDetails.tsx b/src/opportunities/components/JobDetails.tsx
index 90e9568f..f898189c 100644
--- a/src/opportunities/components/JobDetails.tsx
+++ b/src/opportunities/components/JobDetails.tsx
@@ -1,5 +1,4 @@
import React from "react";
-import AboutSection from "./AboutSection";
import JobHeader from "./JobHeader";
import JobDescription from "./JobDescription";
@@ -9,17 +8,14 @@ interface JobDetailsProps {
department: string;
description: string;
authorProfile: string;
- aboutSection: AboutItem[];
recommended_experience: string;
}
const JobDetails = ({
name,
author,
- department,
description,
authorProfile,
- aboutSection,
recommended_experience,
}: JobDetailsProps) => {
return (
@@ -28,9 +24,7 @@ const JobDetails = ({
title={name}
author={author}
img={authorProfile}
- department={department}
/>
-
+
## Prerequisites
@@ -64,10 +67,10 @@ posted by professors, graduate students, or lab staff.
|------------------------|---------------|---------------------------------------------------------------|
| `VITE_BACKEND_SERVER` | None | URL to the backend server |
-Set the varaible with:
-```
-$ export VITE_BACKEND_SERVER="http://127.0.0.1:9000"
-```
+* Set the variable with:
+ ```
+ $ export VITE_BACKEND_SERVER="http://127.0.0.1:9000"
+ ```
## Testing
* To run the frontend locally run the following:
@@ -75,12 +78,44 @@ $ export VITE_BACKEND_SERVER="http://127.0.0.1:9000"
$ make develop
```
This command allows editing and autoreloading while making changes
+
+### Linting
+* Run the linter and fix any lint issues to maintiain code quality and standards
+ ```
+ make lint
+ ```
## Building
- * To build the application use this command to build the static files and test the production version of deploy the files.
+ * To build the application use this command to build the static files and test the production version of the files.
```
- npm run build
+ $ npm run build
```
+ This command allows editing and autoreloading while making changes
+
+## Deployment
+Create PRs to the main branch from your working branch. Make sure your new code is tested and bug free. Upon creating a merge request, a build test will make sure your code is running without errors and safe to merge to main.
+
+## Contact Us
+[](https://discord.gg/tsaxCKjYHT)
+[](https://rcoslabconnect.atlassian.net/jira/software/projects/CCS/list)
+
+## Project Contributors
+
+Running list of contributors to the LabConnect project:
+
+### Project Lead
+
+- **Will Broadwell** [Project Lead]
+- **Rafael Cenzano** [Former Project Lead]
+
+### Rensselaer Center for Open Source Development Team
+
+- **Jaswanth D** [Frontend]
+- **Doan N** [Frontend]
+- **Pragathi A** [Frontend / Backend]
+- **Aniket S** [Backend]
+
+### Past Rensselaer Center for Open Source Development Team
## Deployment
Create PRs to the main branch. Upon merging, a build test will make sure your code is running without errors and safe to merge to main. On a completed merge the action will build and push the new docker image.
diff --git a/index.html b/index.html
index bf15cd2d..1a5a0bf1 100644
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
-
+