Skip to content

Commit

Permalink
Merge pull request #1688 from Ansanjohny/dev
Browse files Browse the repository at this point in the history
Feat:PathFinder
  • Loading branch information
aswanthabam authored Nov 16, 2024
2 parents 7251fef + d294439 commit 34754b9
Show file tree
Hide file tree
Showing 4 changed files with 440 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ import YourLC from "./modules/Dashboard/modules/LearningCircleV2/pages/YourLC/Yo
import MoreInfoLC from "./modules/Dashboard/modules/LearningCircleV2/pages/moreInfoLC/MoreInfoLC";
import AttendeeReport from "./modules/Dashboard/modules/LearningCircleV2/pages/AttendeeReport/AttendeeReport";
import LCReport from "./modules/Dashboard/modules/LearningCircleV2/pages/LCReport/LCReport";
import PathFinder from "./modules/Common/Authentication/pages/Onboarding/PathFinder/PathFinder";

const Profile = lazy(
() => import("./modules/Dashboard/modules/Profile/pages/Profile")
Expand Down Expand Up @@ -325,6 +326,10 @@ function App() {
path: "/register/organization",
element: <CollegePage />
},
{
path: "/register/pathfinder",
element: <PathFinder />
},
{
path: "/signin",
element: <SignIn />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
.pathFinderContainer {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pathFinderContainer h1 {
text-align: center;
font-size: 2rem;
margin-bottom: 20px;
}

.pathFinderContainer p {
font-size: 1rem;
margin-bottom: 20px;
}

.pathFinderContainer .question-box {
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pathFinderContainer .question-no {
font-weight: bold;
color: #333;
}

.pathFinderContainer h4 {
font-size: 1.25rem;
margin-top: 20px;
}

.pathFinderContainer .options-table {
width: 100%;
margin-top: 10px;
}

.pathFinderContainer .options-table td {
padding: 10px 0;
font-size: 1rem;
}

.pathFinderContainer input[type="checkbox"] {
margin-right: 10px;
}

.pathFinderContainer .button-container {
display: flex;
justify-content: space-between; /* Aligns buttons to left and right */
margin-top: 20px;
}

.pathFinderContainer button.prev {
background-color: #ddd;
color: #333;
padding: 10px 20px;
border: none;
border-radius: 5px;
}

.pathFinderContainer button.prev:hover {
background-color: #ccc;
}

.pathFinderContainer button.next {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
}

.pathFinderContainer button.next:hover {
background-color: #0056b3;
}

.pathFinderContainer .result-box {
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pathFinderContainer .bold-text {
font-weight: bold;
font-size: 1.5rem;
color: #007bff;
}

.pathFinderContainer .result-heading {
margin-top: 20px;
font-size: 1.25rem;
font-weight: bold;
}

.pathFinderContainer hr {
margin: 20px 0;
border-top: 2px solid #007bff;
}

.pathFinderContainer strong {
font-weight: bold;
}

.pathFinderContainer span {
font-size: 1.25rem;
margin-left: 10px;
color: #333;
}
Loading

0 comments on commit 34754b9

Please sign in to comment.