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

stanley/whyjoin #102

Merged
merged 1 commit into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
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
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