Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
import Image from 'next/image';
import hackers_choice_mascots from 'public/hackers/hackers-choice/hackers_choice_mascots.svg';
import TextCard from '../HomeHacking/_components/TextCard';

export default function HackerChoiceAward() {
return <div>Hacker Choice Award</div>;
return (
<div className="bg-[#F1FFCC]">
<div className="flex flex-col md:flex-row items-center justify-between px-[5%] p-[10%] gap-12 md:gap-0">
<div className="flex-1 flex justify-center md:justify-start">
<Image
src={hackers_choice_mascots}
width={424}
height={611}
alt="cow and frog hackdavis mascots cheering"
className="w-auto h-auto max-w-full"
/>
</div>
<div className="flex flex-1 justify-end">
<TextCard
short_text="CHECK IT OUT"
title="Hackers Choice Awards"
long_text="While you wait, put in your choice for your favorite hack! You are allowed 1 vote, and you cannot vote for your own team. "
button_text="VIEW PROJECTS"
button_link=""
button_color="D1F76E"
text_color="1A3819"
/>
</div>
</div>
</div>
);
}
110 changes: 110 additions & 0 deletions public/hackers/hackers-choice/hackers_choice_mascots.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.