({ maxWidth = "1150px" }: HomeFooterProps)
| 10 | }; |
| 11 | |
| 12 | export function HomeFooter({ maxWidth = "1150px" }: HomeFooterProps) { |
| 13 | return ( |
| 14 | <footer className="flex flex-col items-center w-full px-4 py-6 bg-black md:py-10"> |
| 15 | <div |
| 16 | className="flex items-center justify-between w-full border-t-[1px] pt-9 border-slate-800" |
| 17 | style={{ maxWidth: maxWidth }} |
| 18 | > |
| 19 | <div className="flex flex-grow items-start"> |
| 20 | <Logo /> |
| 21 | </div> |
| 22 | <ol className="flex ml-2"> |
| 23 | <li className="mr-2 hover:cursor-pointer text-white/70 hover:text-white transition"> |
| 24 | <Link to="/privacy">Privacy</Link> |
| 25 | </li> |
| 26 | <li className="hover:cursor-pointer"> |
| 27 | <a |
| 28 | href="https://github.com/triggerdotdev/jsonhero-web" |
| 29 | target="_blank" |
| 30 | > |
| 31 | <GithubIcon /> |
| 32 | </a> |
| 33 | </li> |
| 34 | <li className="ml-2 hover:cursor-pointer"> |
| 35 | <a href="mailto:hello@jsonhero.io"> |
| 36 | <EmailIcon /> |
| 37 | </a> |
| 38 | </li> |
| 39 | <li className="ml-2 hover:cursor-pointer"> |
| 40 | <a href="https://discord.gg/JtBAxBr2m3" target="_blank"> |
| 41 | <DiscordIcon /> |
| 42 | </a> |
| 43 | </li> |
| 44 | <li className="ml-2 hover:cursor-pointer"> |
| 45 | <a href="https://twitter.com/triggerdotdev" target="_blank"> |
| 46 | <TwitterIcon /> |
| 47 | </a> |
| 48 | </li> |
| 49 | </ol> |
| 50 | </div> |
| 51 | </footer> |
| 52 | ); |
| 53 | } |
nothing calls this directly
no outgoing calls
no test coverage detected