Skip to content

Commit

Permalink
Applied prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
koss-service committed Nov 28, 2023
1 parent a4774ab commit 132e574
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 37 deletions.
6 changes: 4 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import PastProgramsPage from "./pages/PastProgramsPage";
import StudentDashboard from "./pages/StudentDashboard";
import RegistrationForm from "./pages/RegistrationForm";


function App() {
return (
<div className="App">
Expand Down Expand Up @@ -55,7 +54,10 @@ function App() {
path={ROUTER_PATHS.MENTOR_DASHBOARD}
element={<MentorDashboard />}
/>
<Route path={ROUTER_PATHS.PASTPROGRAMS} element={<PastProgramsPage />} />
<Route
path={ROUTER_PATHS.PASTPROGRAMS}
element={<PastProgramsPage />}
/>
</Routes>
</AuthProvider>
</ScrollToTop>
Expand Down
6 changes: 1 addition & 5 deletions src/components/FooterSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,7 @@ export default function FooterSection() {
</a>
</li>
<li className="hover:text-white/50">
<Link
to={ROUTER_PATHS.PASTPROGRAMS}
>
Past Programs
</Link>
<Link to={ROUTER_PATHS.PASTPROGRAMS}>Past Programs</Link>
</li>
<li className="hover:text-white/50">
<a
Expand Down
59 changes: 29 additions & 30 deletions src/data/programs.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
[
{
"year":2022,
"locs":0.5,
"participants":1200,
"prs":390,
"link":"https://kwoc22.kossiitkgp.org"
},
{
"year":2021,
"locs":5.2,
"participants":1200,
"prs":750,
"link":"https://kwoc21.kossiitkgp.org"
},
{
"year":2020,
"projects":150,
"participants":2000,
"prs":600,
"link":"https://kwoc20.kossiitkgp.org"
},
{
"year":2019,
"locs":3,
"participants":2000,
"prs":600,
"link":"https://kwoc19.kossiitkgp.org"
}

]
{
"year": 2022,
"locs": 0.5,
"participants": 1200,
"prs": 390,
"link": "https://kwoc22.kossiitkgp.org"
},
{
"year": 2021,
"locs": 5.2,
"participants": 1200,
"prs": 750,
"link": "https://kwoc21.kossiitkgp.org"
},
{
"year": 2020,
"projects": 150,
"participants": 2000,
"prs": 600,
"link": "https://kwoc20.kossiitkgp.org"
},
{
"year": 2019,
"locs": 3,
"participants": 2000,
"prs": 600,
"link": "https://kwoc19.kossiitkgp.org"
}
]

0 comments on commit 132e574

Please sign in to comment.