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

Organizers update #51

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
test
  • Loading branch information
Antosha9108 committed Nov 22, 2023
commit f2f56350bf4cf7b1b463fcda7cfa77dd605c7119
3 changes: 1 addition & 2 deletions app/(routes)/organizers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default async function Organizers() {
<ul
className="grid grid-cols-2 md:grid-cols-3 gap-2 justify-center flex-auto mt-10 text-center"
>
{teamMembers.map(({ name, imageUrl, team, role, linkedInUrl }) => (
{teamMembers.map(({ name, imageUrl, role, linkedInUrl }) => (
<li key={name} className="m-4">
<a href={linkedInUrl}>
<img
Expand All @@ -29,7 +29,6 @@ export default async function Organizers() {
{name}
</h3>
<p className="text-sm leading-6 text-gray-600">{role}</p>
<p className="text-sm leading-6 text-gray-600">{team}</p>
</li>
))}
</ul>
Expand Down