()
| 1 | export const FoundIssue = () => { |
| 2 | return ( |
| 3 | <div className="mb-24 lg:mb-32 mt-16 lg:mt-0 bg-[#262522] w-[96%] max-w-screen-lg mx-auto px-14 py-14 rounded-[36px]"> |
| 4 | <div className="lg:grid grid-cols-[45%,1fr] gap-28"> |
| 5 | <div className="rounded-xl"> |
| 6 | <img |
| 7 | src="https://res.cloudinary.com/dcugqfvvg/image/upload/v1713657312/undraw_questions_re_1fy7_kqjpu3.svg" |
| 8 | alt="chess-board" |
| 9 | /> |
| 10 | </div> |
| 11 | <div className="mt-16 lg:mt-0"> |
| 12 | <h1 className="text-6xl text-white font-bold text-left mt-[-10px]"> |
| 13 | Found an Issue! |
| 14 | </h1> |
| 15 | <p className="text-xl mt-6 text-white"> |
| 16 | Please create an issue in our github website below. You are also |
| 17 | invited to contribute on the project. |
| 18 | </p> |
| 19 | |
| 20 | <a |
| 21 | href="https://github.com/code100x/plinkoo/issues" |
| 22 | target="_blank" |
| 23 | className="mt-10 text-white rounded-2xl px-4 py-4 border border-slate-400 bg-transparent w-full text-2xl flex gap-10 items-center justify-center" |
| 24 | > |
| 25 | <img |
| 26 | className="w-16 h-16" |
| 27 | src="https://res.cloudinary.com/dcugqfvvg/image/upload/v1713657100/github-svgrepo-com_uosbko.svg" |
| 28 | alt="icon" |
| 29 | /> |
| 30 | <p className="text-4xl">Github</p> |
| 31 | </a> |
| 32 | </div> |
| 33 | </div> |
| 34 | </div> |
| 35 | ); |
| 36 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected