Showing
2 changed files
with
21 additions
and
0 deletions
web/public/gitlab.png
0 → 100644
23.6 KB
web/src/Footer.tsx
0 → 100644
| 1 | +import React from 'react'; | ||
| 2 | + | ||
| 3 | +export const Footer: React.FC = () => { | ||
| 4 | + return ( | ||
| 5 | + <div className="mt-auto flex justify-center items-center"> | ||
| 6 | + <a href="http://khuhub.khu.ac.kr/2020105578/nodejs-game"> | ||
| 7 | + <img className="object-contain h-12" src="./gitlab.png"/> | ||
| 8 | + </a> | ||
| 9 | + <div className="flex text-gray-600">Made by | ||
| 10 | + <a href="https://github.com/aren227" target="_blank" | ||
| 11 | + className="outline-none focus:outline-none | ||
| 12 | + text-gray-600 hover:text-green-500 | ||
| 13 | + ease-linear transition-all duration-100">@aren227</a> | ||
| 14 | + <a href="https://github.com/aren227" target="_blank" | ||
| 15 | + className="outline-none focus:outline-none | ||
| 16 | + text-gray-600 hover:text-green-500 | ||
| 17 | + ease-linear transition-all duration-100">@overnap</a> | ||
| 18 | + </div> | ||
| 19 | + </div> | ||
| 20 | + ); | ||
| 21 | +} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment