Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benborgers committed Jan 25, 2025
1 parent f8a201b commit d93c3e6
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/dev/get-involved/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import GetInvolved from "@/components/get-involved";

export default function GetInvolvedPage() {
return <GetInvolved />;
}
2 changes: 1 addition & 1 deletion app/dev/what-we-do/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import WhatWeDo from "@/app/components/what-we-do";
import WhatWeDo from "@/components/what-we-do";

export default function WhatWeDoPage() {
return (
Expand Down
76 changes: 76 additions & 0 deletions components/get-involved.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
import Button from "./button";

export default function GetInvolved() {
return (
<section>
<h2 className="text-4xl font-semibold text-white">Get Involved</h2>

<div className="mt-16 grid grid-cols-[3fr,2fr] gap-16">
<div>
<p className="text-white font-semibold text-2xl">
🐘 Tufts University Students
</p>
<div className="mt-6 space-y-4 text-white/70">
<p>
JumboCode is a year-long commitment, with projects starting in mid
September and wrapping up in early May. Applications for most
positions open in the spring semester, so keep an eye out for
them.
</p>
<p>
Follow our{" "}
<a
href="https://instagram.com/jumbocode"
target="_blank"
className="font-medium text-brand hover:underline"
>
Instagram
</a>{" "}
and subscribe to our{" "}
<a
href="https://us11.list-manage.com/subscribe?u=d3c507093f7b2f71584f684c0&id=25ebfbc332"
target="_blank"
className="font-medium text-brand hover:underline"
>
newsletter
</a>{" "}
to stay updated!
</p>
</div>
<div className="mt-8">
<Button text="Learn more" href="/apply" variant="secondary" />
</div>
</div>

{/* eslint-disable-next-line @next/next/no-img-element */}
<img src="/jumbohack-checkin.jpg" alt="" className="rounded-2xl" />
</div>

<div className="mt-20 grid grid-cols-[2fr,3fr] gap-16">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img src="/jumbohack-checkin.jpg" alt="" className="rounded-2xl" />

<div>
<p className="text-white font-semibold text-2xl">
🏠 Non-Profit Organizations
</p>
<div className="mt-6 space-y-4 text-white/70">
<p>
If you&apos;re a nonprofit organization with a project in mind, we
encourage you to apply! We accept NPO applications every June.
</p>
<p>
<a href="/" className="font-medium text-brand hover:underline">
Contact us
</a>{" "}
to learn more!
</p>
</div>
<div className="mt-8">
<Button text="Learn more" href="/" variant="secondary" />
</div>
</div>
</div>
</section>
);
}
File renamed without changes.

0 comments on commit d93c3e6

Please sign in to comment.