ShrimpDelightSite/app/components/shrimp-projects/project-descriptions/htp.tsx
2026-07-11 15:20:14 -06:00

30 lines
1.2 KiB
XML

export default function HackThePlanetText() {
return (
<div className="h-full grid grid-cols-1 grid-row-2">
<div>
<p className="mb-2">
A game by Shrimp Squad Studios made for the Epic MegaJam!
</p>
<p className="mb-2">
One week to make a game and this is what we made! A game
based on the movie Hackers.
</p>
<p className="mb-2">
Your goal is to hack the Gibson computer and collect the
garbage file. Which will then in turn let you
<span className="font-bold"> HACK THE PLANET!</span>
</p>
</div>
<div className="mt-[16px] mb-[16px] bg-space-shrimp-blue p-[15px] size-fit rounded-md self-end">
<a
className="animate-blink border-solid border-r-[2px] border-ashy-shrimp text-[24px] text-ashy-shrimp cursor-[unset]"
href="https://megsum.itch.io/hack-the-planet"
target="_blank"
>
&gt;&gt; Try it out!
</a>
</div>
</div>
);
}