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

Contributors page #833

Open
wants to merge 2 commits 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
198 changes: 195 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 ContributorsPage from './Page/TopContributors.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="/allContributors" element={<ContributorsPage />} />
<Route path="*" element={<PageNotFound />} />
</Routes>
</BrowserRouter>
Expand Down
15 changes: 13 additions & 2 deletions src/Page/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,8 @@ const TechFeatures = () => {
</a>
</div>

{/* Card for Adding New Features */}
<a
href="/https://github.com/codeaashu/DevDisplay"
href="https://github.com/codeaashu/DevDisplay"
className="feature-card mt-6 block rounded-lg bg-gray-800 p-6 text-center shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
>
<div className="feature-card-inner rounded-lg p-[2px]">
Expand All @@ -158,6 +157,18 @@ const TechFeatures = () => {
</p>
</div>
</a>

<a
href="/allContributors"
className="feature-card mt-6 block rounded-lg bg-gray-800 p-6 text-center shadow-lg transition duration-300 hover:scale-105 hover:transform hover:bg-gray-700"
>
<div className="feature-card-inner rounded-lg p-[2px]">
<h3 className="mb-4 text-2xl font-semibold">
Have a look at the <span className="text-blue-400">Contributors</span>!
</h3>
<p>Explore the contributors who work hard to develop this project and check out the top contributors.</p>
</div>
</a>
</section>
);
};
Expand Down
Loading