Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resource sharing hub #827

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
216 changes: 213 additions & 3 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import SponsorUs from './Page/Sponsor.jsx';
import AchieverJourneyPage from './components/AchievementJourney/IndividualJourney.js';
import IndustryTrends from './Page/IndustryTrends.jsx';
import JourneyPage from './Page/JourneyPage.jsx';
import ResourceSharingHub from './Page/ResourceSharingHub.jsx';
function App() {
return (
<BrowserRouter>
Expand Down Expand Up @@ -104,6 +105,7 @@ function App() {
<Route path="/journeys" element={<JourneyPage />} />
<Route path="/IndustryTrends" element={<IndustryTrends />} />
<Route path="/Contribution" element={<Contribution />} />
<Route path="/ResourceSharing" element={<ResourceSharingHub />} />
<Route path="*" element={<PageNotFound />} />
</Routes>
</BrowserRouter>
Expand Down
2 changes: 1 addition & 1 deletion src/Page/PageNotFound.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const PageNotFound = () => {
Oops! The page you're looking for doesn't exist or has been moved.
</p>
<Link
to="/"
to="/Home"
className="mt-8 inline-block rounded-lg bg-textSecondary px-6 py-3 font-poppoins font-semibold text-white transition duration-300 hover:bg-blue-700"
>
Go Back Home
Expand Down
Loading