diff --git a/src/images/AutonomousVacuum.png b/src/images/AutonomousVacuum.png new file mode 100644 index 0000000..dd29425 Binary files /dev/null and b/src/images/AutonomousVacuum.png differ diff --git a/src/images/Building.png b/src/images/Building.png new file mode 100644 index 0000000..88881e9 Binary files /dev/null and b/src/images/Building.png differ diff --git a/src/images/CollaboratorsBackground.png b/src/images/CollaboratorsBackground.png new file mode 100644 index 0000000..d38a37e Binary files /dev/null and b/src/images/CollaboratorsBackground.png differ diff --git a/src/images/Designing.png b/src/images/Designing.png new file mode 100644 index 0000000..07a899f Binary files /dev/null and b/src/images/Designing.png differ diff --git a/src/images/DottedOrangeLine.png b/src/images/DottedOrangeLine.png new file mode 100644 index 0000000..a39e624 Binary files /dev/null and b/src/images/DottedOrangeLine.png differ diff --git a/src/images/FACES.png b/src/images/FACES.png new file mode 100644 index 0000000..a8c43a4 Binary files /dev/null and b/src/images/FACES.png differ diff --git a/src/images/FASAE.png b/src/images/FASAE.png new file mode 100644 index 0000000..46801fc Binary files /dev/null and b/src/images/FASAE.png differ diff --git a/src/images/FGN.png b/src/images/FGN.png new file mode 100644 index 0000000..e8d531f Binary files /dev/null and b/src/images/FGN.png differ diff --git a/src/images/GestureControlledArm.png b/src/images/GestureControlledArm.png new file mode 100644 index 0000000..f127db0 Binary files /dev/null and b/src/images/GestureControlledArm.png differ diff --git a/src/images/HungryHungryHippos.png b/src/images/HungryHungryHippos.png new file mode 100644 index 0000000..b7d752e Binary files /dev/null and b/src/images/HungryHungryHippos.png differ diff --git a/src/images/PastProjectsBackground.png b/src/images/PastProjectsBackground.png new file mode 100644 index 0000000..efa87b1 Binary files /dev/null and b/src/images/PastProjectsBackground.png differ diff --git a/src/images/Planning.png b/src/images/Planning.png new file mode 100644 index 0000000..924dbd9 Binary files /dev/null and b/src/images/Planning.png differ diff --git a/src/images/Presentation.png b/src/images/Presentation.png new file mode 100644 index 0000000..bdbfd33 Binary files /dev/null and b/src/images/Presentation.png differ diff --git a/src/images/Step1.png b/src/images/Step1.png new file mode 100644 index 0000000..3906c4f Binary files /dev/null and b/src/images/Step1.png differ diff --git a/src/images/Step2.png b/src/images/Step2.png new file mode 100644 index 0000000..1afd2bc Binary files /dev/null and b/src/images/Step2.png differ diff --git a/src/images/Step3.png b/src/images/Step3.png new file mode 100644 index 0000000..fa7eac3 Binary files /dev/null and b/src/images/Step3.png differ diff --git a/src/images/Step4.png b/src/images/Step4.png new file mode 100644 index 0000000..b6d1f2f Binary files /dev/null and b/src/images/Step4.png differ diff --git a/src/images/Step5.png b/src/images/Step5.png new file mode 100644 index 0000000..baab00d Binary files /dev/null and b/src/images/Step5.png differ diff --git a/src/images/Testing.png b/src/images/Testing.png new file mode 100644 index 0000000..98cef1d Binary files /dev/null and b/src/images/Testing.png differ diff --git a/src/pages/ProjectsPage/FEPPage/DevelopmentProcess.jsx b/src/pages/ProjectsPage/FEPPage/DevelopmentProcess.jsx deleted file mode 100644 index e69de29..0000000 diff --git a/src/pages/ProjectsPage/FEPPage/EngineeringProcess.jsx b/src/pages/ProjectsPage/FEPPage/EngineeringProcess.jsx new file mode 100644 index 0000000..e00b5b3 --- /dev/null +++ b/src/pages/ProjectsPage/FEPPage/EngineeringProcess.jsx @@ -0,0 +1,79 @@ +import React from "react"; +import ProcessCard from "./ProcessCard"; // Adjust the import path as necessary +import Planning from "../../../images/Planning.png"; +import Designing from "../../../images/Designing.png"; +import Building from "../../../images/Building.png"; +import Testing from "../../../images/Testing.png"; +import Presentation from "../../../images/Presentation.png"; + +import Step1 from "../../../images/Step1.png"; +import Step2 from "../../../images/Step2.png"; +import Step3 from "../../../images/Step3.png"; +import Step4 from "../../../images/Step4.png"; +import Step5 from "../../../images/Step5.png"; +import DottedOrangeLine from "../../../images/DottedOrangeLine.png"; + +const DevelopmentProcess = () => { + return ( +
+ {/* Title */} +
+

+ The Engineering Process +

+
+
+ + {/* Main Content: Dotted line and Process Cards */} +
+ {/* Wrapper to position dotted line and process cards */} +
+ {/* Dotted line centered vertically */} +
+ Dotted Line +
+ + {/* Process Cards */} +
+ + + + + + + + + +
+
+
+
+ ); +}; + +export default DevelopmentProcess; diff --git a/src/pages/ProjectsPage/FEPPage/FEPPage.jsx b/src/pages/ProjectsPage/FEPPage/FEPPage.jsx index 3bf6236..61d4dc6 100644 --- a/src/pages/ProjectsPage/FEPPage/FEPPage.jsx +++ b/src/pages/ProjectsPage/FEPPage/FEPPage.jsx @@ -3,8 +3,9 @@ import Footer from "../../../components/Footer"; import FEPBackground from "../../../images/FEPBackground.png"; import TheFEPProject from "./TheFEPProject"; import OurProcess from "./OurProcess"; -import DevelopmentProcess from "./DevelopmentProcess"; +import EngineeringProcess from "./EngineeringProcess"; import OurCollaborators from "./OurCollaborators"; +import PastProjects from "./OurPastProjects"; const FEPPage = () => { return ( @@ -13,8 +14,9 @@ const FEPPage = () => { - + +