Skip to content

Commit

Permalink
fixed focus + added pic
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleylew5 committed Nov 20, 2023
1 parent 58285aa commit 25044f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/home/Focus.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import ArrowLink from "../ArrowLink";

const Focus = ({ title, description, link, icon }) => {
return (
<div className="col-span-1 md:col-span-2 relative flex flex-col items-center bg-blue-100 p-2">
<div className="col-span-2 md:col-span-1 relative flex flex-col items-center bg-blue-100 p-2">
<div className="flex justify-center text-3xl text-ewb-green my-2">
{icon}
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/home/WhyJoin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Title from "../Title";
import { FOCUS } from "@/data/focus";
import Focus from "./Focus";
import Picture from "../Picture";
import img1 from "../../../public/images/whyJoin.webp";
const WhyJoin = () => {
return (
<div className="py-16 w-11/12 flex flex-col items-center">
Expand All @@ -27,7 +28,7 @@ const WhyJoin = () => {
/>
))}
</div>
<Picture picture="/images/CostaRica/CostaRica1.gif" />
<Picture picture={img1.src} />
</div>
);
};
Expand Down

0 comments on commit 25044f9

Please sign in to comment.