| 1 | import Link from "next/link"; |
| 2 | |
| 3 | export default function Footer() { |
| 4 | return ( |
| 5 | <div className="mb-32 grid text-center lg:mb-0 lg:w-full lg:max-w-5xl lg:grid-cols-4 lg:text-left"> |
| 6 | <Link href="/just-play" className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"> |
| 7 | <h2 className="mb-3 text-2xl font-semibold"> |
| 8 | Just play! |
| 9 | </h2> |
| 10 | <p className="m-0 max-w-[30ch] text-sm opacity-50"> |
| 11 | No hassle. No waste time. |
| 12 | </p> |
| 13 | </Link> |
| 14 | |
| 15 | <Link href="/learn" className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"> |
| 16 | <h2 className="mb-3 text-2xl font-semibold"> |
| 17 | Learn!{" "} |
| 18 | </h2> |
| 19 | <p className="m-0 max-w-[30ch] text-sm opacity-50"> |
| 20 | Learn, practice, repeat! When you're done, just play! |
| 21 | </p> |
| 22 | </Link> |
| 23 | |
| 24 | <Link href="/community" className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"> |
| 25 | <h2 className="mb-3 text-2xl font-semibold"> |
| 26 | Community{" "} |
| 27 | </h2> |
| 28 | <p className="m-0 max-w-[30ch] text-sm opacity-50"> |
| 29 | Play with your friends. |
| 30 | </p> |
| 31 | </Link> |
| 32 | <Link href="/download" className="group rounded-lg border border-transparent px-5 py-4 transition-colors hover:border-gray-300 hover:bg-gray-100 hover:dark:border-neutral-700 hover:dark:bg-neutral-800/30"> |
| 33 | <h2 className="mb-3 text-2xl font-semibold"> |
| 34 | Download desktop app{" "} |
| 35 | <span className="inline-block transition-transform group-hover:translate-x-1 motion-reduce:transform-none"> |
| 36 | -> |
| 37 | </span> |
| 38 | </h2> |
| 39 | <p className="m-0 max-w-[30ch] text-sm opacity-50"> |
| 40 | And start playing now! |
| 41 | </p> |
| 42 | </Link> |
| 43 | </div> |
| 44 | ); |
| 45 | } |