Skip to content

Commit

Permalink
Merge pull request #74 from acm-ucr/xwRongx/implementinfo
Browse files Browse the repository at this point in the history
added info to support page
  • Loading branch information
qhgill authored Jul 16, 2024
2 parents 6f4fe17 + 2d79932 commit 7578076
Showing 1 changed file with 21 additions and 11 deletions.
32 changes: 21 additions & 11 deletions src/components/support/Support.jsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
import Connect from "@/components/support/Connect";
import Subtitle from "@/components/Subtitle";
import Button from "@/components/Button";
import { SOCIALS } from "@/data/support/Socials";

const Support = () => {
return (
<div className="text-center text-biscuits-brown-200 font-shrikhand text-5xl">
Connect with us!
<div className="flex justify-evenly translate-y-5">
{SOCIALS.map((socials, index) => (
<Connect
key={index}
name={socials.name}
icon={socials.icon}
link={socials.link}
/>
))}
<div>
<div className="flex flex-col items-center gap-y-8">
<Subtitle color="text-biscuits-brown-200" text="Donations" />
<Button text="VENMO" link="https://account.venmo.com/u/h4b_ucr" />
<Subtitle color="text-biscuits-brown-200" text="Newsletter" />
<Button text="SIGN UP" link="http://eepurl.com/iaWAc5" />
</div>
<div className="text-center text-biscuits-brown-200 font-shrikhand text-5xl">
Connect with us!
<div className="flex justify-evenly translate-y-5 pb-10">
{SOCIALS.map((socials, index) => (
<Connect
key={index}
name={socials.name}
icon={socials.icon}
link={socials.link}
/>
))}
</div>
</div>
</div>
);
Expand Down

0 comments on commit 7578076

Please sign in to comment.