Skip to content

Commit

Permalink
wip: disable on ground volunteers
Browse files Browse the repository at this point in the history
  • Loading branch information
irangareddy committed May 9, 2024
1 parent e19f58f commit dbe8dd0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import webSiteConfig from "./data/configData.json";

import Header from "./components/Header";
import EventCard from "./components/EventCard";
import Volunteer from "./components/Volunteer";
// import Volunteer from "./components/Volunteer";

const App = () => {
return (
Expand All @@ -16,7 +16,8 @@ const App = () => {
))}
</div>

<div className='mb-8 max-w-2xl'>
{/* Disabled until volunteers gets finalised. */}
{/* <div className='mb-8 max-w-2xl'>
<h2 className='text-3xl mb-4 font-bold'>Voluteers</h2>
<div className='flex flex-wrap'>
{webSiteConfig.volunteers.map((volunteer) => (
Expand All @@ -29,7 +30,7 @@ const App = () => {
/>
))}
</div>
</div>
</div> */}
</div>
);
};
Expand Down

0 comments on commit dbe8dd0

Please sign in to comment.