Skip to content
Merged
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
4 changes: 1 addition & 3 deletions app/(pages)/about-us/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ export default async function About() {
const clinicRolesCardData = await getClinicRolesCards();
const eventCardData = await getEventCardGeneralInfo();

console.log(aboutUsCardData);

return (
<div className={styles.page}>
<div className={styles.aboutUs}>
Expand All @@ -124,7 +122,7 @@ export default async function About() {
title={card.title}
content={card.description}
img={card.image}
alt={card.image_alt_text}
imgAlt={card.image_alt_text}
alignment={idx % 2 === 0 ? "right" : "left"} // alternate alignment
/>
))}
Expand Down