|
| 1 | +import { PiCowFill, PiSwordFill } from "react-icons/pi"; |
| 2 | +import { BadgeLink } from "@/components/BadgeLink"; |
| 3 | +import { |
| 4 | + Card, |
| 5 | + CardContent, |
| 6 | + CardDescription, |
| 7 | + CardFooter, |
| 8 | + CardHeader, |
| 9 | + CardTitle, |
| 10 | +} from "@/components/ui/card"; |
| 11 | + |
| 12 | +// TODO: make this configurable in json rather than hard-coded? |
| 13 | +export const VolunteerWork = () => ( |
| 14 | + <div className="grid gap-4 sm:grid-cols-2 2xl:grid-cols-3"> |
| 15 | + <Card> |
| 16 | + <CardHeader> |
| 17 | + <CardTitle className="font-bold text-lg"> |
| 18 | + WDCC Project Member |
| 19 | + </CardTitle> |
| 20 | + <CardDescription> |
| 21 | + <span className="font-bold">Apr 2025</span> |
| 22 | + - |
| 23 | + <span className="space-x-1 font-bold">Oct 2025</span> |
| 24 | + </CardDescription> |
| 25 | + </CardHeader> |
| 26 | + <CardContent className="h-full whitespace-pre-line"> |
| 27 | + <p> |
| 28 | + I was a software developer in a software project at the Web |
| 29 | + Development and Consulting Club! In a team of 11 we revamped |
| 30 | + and deployed the University of Auckland Badminton Club's web |
| 31 | + portal for member management and court bookings. |
| 32 | + <br />I worked full-stack: I created components for the |
| 33 | + frontend, worked on backend services and endpoints and built |
| 34 | + frontend interfaces such as login, onboarding flows and |
| 35 | + admin interfaces. My last feature will hopefully be |
| 36 | + implementing{" "} |
| 37 | + <a |
| 38 | + className="font-normal-mono" |
| 39 | + href="https://nextjs.org/?uwu=true" |
| 40 | + rel="noopener" |
| 41 | + target="_blank" |
| 42 | + > |
| 43 | + ?uwu=true |
| 44 | + </a>{" "} |
| 45 | + to the logo :) |
| 46 | + <br /> |
| 47 | + This was among the best experiences I've had in my degree |
| 48 | + (and possibly beyond?), where I got to meet so many people, |
| 49 | + learn so many new things about web development and genuinely |
| 50 | + have a lot of fun. |
| 51 | + </p> |
| 52 | + </CardContent> |
| 53 | + <CardFooter> |
| 54 | + <span className="flex flex-wrap gap-2"> |
| 55 | + <BadgeLink |
| 56 | + href="https://uoabadminton.co.nz/" |
| 57 | + label="Deployment" |
| 58 | + target="_blank" |
| 59 | + type="Deployment" |
| 60 | + /> |
| 61 | + <BadgeLink |
| 62 | + href="https://github.com/UoaWDCC/uabc-web" |
| 63 | + label="GitHub" |
| 64 | + target="_blank" |
| 65 | + type="GitHub" |
| 66 | + /> |
| 67 | + <BadgeLink |
| 68 | + className="bg-[#3a86fe]" |
| 69 | + href="https://wdcc.co.nz/" |
| 70 | + label="WDCC" |
| 71 | + startIcon={<PiCowFill />} |
| 72 | + target="_blank" |
| 73 | + /> |
| 74 | + </span> |
| 75 | + </CardFooter> |
| 76 | + </Card> |
| 77 | + <Card> |
| 78 | + <CardHeader> |
| 79 | + <CardTitle className="font-bold text-lg"> |
| 80 | + Part III SOFTENG Class Representative |
| 81 | + </CardTitle> |
| 82 | + <CardDescription> |
| 83 | + <span className="font-bold">Mar 2025</span> |
| 84 | + - |
| 85 | + <span className="space-x-1 font-bold">present</span> |
| 86 | + </CardDescription> |
| 87 | + </CardHeader> |
| 88 | + <CardContent className="h-full whitespace-pre-line"> |
| 89 | + <p> |
| 90 | + I'm one of two class reps for the Part III Software |
| 91 | + Engineering Cohort of 2025. |
| 92 | + <br />I was responsible for facilitating communication |
| 93 | + between students and staff, and helping to coordinate |
| 94 | + various department-wide events. This included collecting |
| 95 | + unbiased feedback from the cohort, reporting any significant |
| 96 | + concerns to the teaching staff, and working with staff and |
| 97 | + the cohort to address concerns and enhance the learning |
| 98 | + experience for all students. |
| 99 | + <br /> |
| 100 | + Being a class rep this year was incredibly rewarding; I got |
| 101 | + to meet and talk to so many new people (staff and students |
| 102 | + alike) and I got to appreciate how awesome everyone in our |
| 103 | + cohort is! |
| 104 | + </p> |
| 105 | + </CardContent> |
| 106 | + <CardFooter> |
| 107 | + <span className="flex flex-wrap gap-2"> |
| 108 | + <BadgeLink |
| 109 | + href="https://www.linkedin.com/in/alex-b-nz/" |
| 110 | + label="Alex Brown, my fellow class rep" |
| 111 | + target="_blank" |
| 112 | + type="LinkedIn" |
| 113 | + /> |
| 114 | + </span> |
| 115 | + </CardFooter> |
| 116 | + </Card> |
| 117 | + <Card> |
| 118 | + <CardHeader> |
| 119 | + <CardTitle className="font-bold text-lg"> |
| 120 | + Open Source Contributor |
| 121 | + </CardTitle> |
| 122 | + </CardHeader> |
| 123 | + <CardContent className="h-full whitespace-pre-line"> |
| 124 | + <p> |
| 125 | + I contribute to the Polytopia Damage Calculator, one of the |
| 126 | + most popular web apps for calculating damage in the |
| 127 | + turn-based strategy game The Battle of Polytopia. |
| 128 | + <br /> |
| 129 | + My main contributions include fixing calculation bugs and |
| 130 | + updating the calculator to support new versions of the game |
| 131 | + as they are released. |
| 132 | + <br /> |
| 133 | + Contributions welcome! |
| 134 | + </p> |
| 135 | + </CardContent> |
| 136 | + <CardFooter> |
| 137 | + <span className="flex flex-wrap gap-2"> |
| 138 | + <BadgeLink |
| 139 | + className="bg-[#FD6CA4]" |
| 140 | + href="https://polytopia-damage-calculator.firebaseapp.com/" |
| 141 | + label="Polytopia Damage Calculator" |
| 142 | + startIcon={<PiSwordFill />} |
| 143 | + target="_blank" |
| 144 | + /> |
| 145 | + <BadgeLink |
| 146 | + href="https://github.com/amigobrewbrew/polytopiacalculatorfirebase-public" |
| 147 | + label="GitHub" |
| 148 | + target="_blank" |
| 149 | + type="GitHub" |
| 150 | + /> |
| 151 | + </span> |
| 152 | + </CardFooter> |
| 153 | + </Card> |
| 154 | + </div> |
| 155 | +); |
0 commit comments