()
| 11 | import logo from "../../public/Images/logo.jpg"; |
| 12 | |
| 13 | const Footer = () => { |
| 14 | let year = new Date().getFullYear(); |
| 15 | |
| 16 | return ( |
| 17 | <footer className="bg-black bottom-0 mb-6 pt-32 font-primary justify-center"> |
| 18 | <div className=" flex-col gap-8 justify-between content-center md:flex-row"> |
| 19 | {/* Logo */} |
| 20 | <div className="grid-auto "> |
| 21 | <div className=" flex-col justify-center"> |
| 22 | <Image |
| 23 | src={logo} |
| 24 | alt="DevsInTech" |
| 25 | width={100} |
| 26 | height={120} |
| 27 | className="mx-auto" |
| 28 | /> |
| 29 | <p className="text-green-500 text-2xl text-center justify-items-center font-mono"> |
| 30 | DevsInTech |
| 31 | </p> |
| 32 | </div> |
| 33 | </div> |
| 34 | |
| 35 | {/* About Us */} |
| 36 | |
| 37 | <div className="flex flex-col justif-center"> |
| 38 | <p className="text-center text-white text-md sm:text-lg md:text-m md:text-center"> |
| 39 | <a href="https://devsintech.netlify.app/" className="text-green-500 font-mono">DevsInTech</a> is a |
| 40 | thriving and welcoming community of developers, tech |
| 41 | professionals,and enthusiasts who share a common passion for |
| 42 | technology. We are an Open-source project available on{" "} |
| 43 | <a href="https://github.com/devs-in-tech/DevsInTech" className="text-blue-500">GitHub</a> |
| 44 | </p> |
| 45 | |
| 46 | </div> |
| 47 | |
| 48 | {/* COLUMNS */} |
| 49 | <div className="m-6"> |
| 50 | <div className="flex justify-center gap-16"> |
| 51 | <div className="text-center font-secondary"> |
| 52 | <p className="text-lg font-medium text-white">Community</p> |
| 53 | |
| 54 | <nav aria-label="Footer About Nav" className="mt-4 text-center "> |
| 55 | <ul className="space-y-4 font-black text-base"> |
| 56 | <li> |
| 57 | <Link |
| 58 | className="text-purple-900 transition hover:text-gray-900/75 dark:text-white dark:hover:text-white/75" |
| 59 | href="/" |
| 60 | > |
| 61 | Collaborate |
| 62 | </Link> |
| 63 | </li> |
| 64 | |
| 65 | <li> |
| 66 | <Link |
| 67 | className="text-purple-900 transition hover:text-gray-900/75 dark:text-white dark:hover:text-white/75" |
| 68 | href="/" |
| 69 | > |
| 70 | Communicate |
nothing calls this directly
no outgoing calls
no test coverage detected