|
| 1 | +import Image from "next/image"; |
| 2 | +import Link from "next/link"; |
| 3 | +import type { NextPage } from "next"; |
| 4 | + |
| 5 | +const MethelyProfile: NextPage = () => { |
| 6 | + return ( |
| 7 | + <div className="min-h-screen flex flex-col md:flex-row items-start justify-start gap-16 px-4 md:px-20"> |
| 8 | + <div className="flex-1"> |
| 9 | + <div className="flex flex-col-reverse lg:flex-row items-center lg:items-start justify-start gap-14 mt-20"> |
| 10 | + <div className="relative"> |
| 11 | + <div className="absolute top-0 left-0 w-full h-full rounded-tl-[100px] rounded-br-[100px] -z-10 transform -translate-x-[4px] -translate-y-[4px]"></div> |
| 12 | + <div className="leaf-shaped py-8 px-6 md:px-10 border-2 flex flex-col items-center justify-start rounded-tl-[100px] rounded-br-[100px] relative z-10"> |
| 13 | + <div className="flex flex-col items-center justify-start"> |
| 14 | + <div className="w-24 h-24 rounded-full bg-cover bg-center bg-no-repeat border-2 border-[#6EF4E6] text-[20px] font-bold text-black flex items-center justify-center"> |
| 15 | + MTH |
| 16 | + </div> |
| 17 | + <p className="text-[24px] text-black font-bold">Methely Armstrong</p> |
| 18 | + <p className="text-md text-[#9B9EA1]">Fullstack & Blockchain Dev</p> |
| 19 | + </div> |
| 20 | + <div className="mt-6 text-[#9B9EA1]"> |
| 21 | + <div className="flex items-center justify-start gap-4 mb-4"> |
| 22 | + <svg |
| 23 | + xmlns="http://www.w3.org/2000/svg" |
| 24 | + fill="none" |
| 25 | + viewBox="0 0 24 24" |
| 26 | + strokeWidth="1.5" |
| 27 | + stroke="#6AECD9" |
| 28 | + className="size-6" |
| 29 | + > |
| 30 | + <path |
| 31 | + strokeLinecap="round" |
| 32 | + strokeLinejoin="round" |
| 33 | + d="M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622 1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244" |
| 34 | + /> |
| 35 | + </svg> |
| 36 | + <Link href="https://www.github.com/MethelyDev">www.github.com/MethelyDev</Link> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + </div> |
| 40 | + </div> |
| 41 | + <div className="flex flex-col md:flex-row md:items-start md:justify-start "> |
| 42 | + <div className="w-full"> |
| 43 | + <div className="w-80 h-80 mx-auto mb-8 relative"> |
| 44 | + <Image |
| 45 | + src="/black lion.jpeg" |
| 46 | + alt="Black Lion" |
| 47 | + width={288} |
| 48 | + height={288} |
| 49 | + className="rounded-full border-4 border-gray-700 object-cover" |
| 50 | + priority |
| 51 | + /> |
| 52 | + </div> |
| 53 | + |
| 54 | + <div> |
| 55 | + <p className="text-[34px] lg:text-[46px] pl-4 leading-[50px] font-medium"> |
| 56 | + <span className="text-[#6AECD9]">METHELY</span> |
| 57 | + </p> |
| 58 | + <p className="text-[34px] lg:text-[46px] leading-[50px] font-medium ml-[1rem]"> |
| 59 | + Fullstack Web2 & Blockchain Developer |
| 60 | + </p> |
| 61 | + </div> |
| 62 | + <div className="mt-8"> |
| 63 | + <p className="pl-4 text-md font-bold text-[#9B9EA1]"> |
| 64 | + A passionate software developer specializing in Fullstack web2 and Web3 development. I blend |
| 65 | + creativity with technical expertise to build engaging web experiences and blockchain solutions. :) |
| 66 | + </p> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + <div className="py-10 px-8 rounded-lg md:rounded-full"> |
| 70 | + {[ |
| 71 | + { number: "5", text: "Programming Languages" }, |
| 72 | + { number: "6", text: "Development Tools" }, |
| 73 | + { number: "1", text: "Year of Experience" }, |
| 74 | + ].map(item => ( |
| 75 | + <div |
| 76 | + key={item.text} |
| 77 | + className="flex items-center justify-start md:items-center md:justify-center gap-4 mt-8" |
| 78 | + > |
| 79 | + <p className="text-[#6AECD9] text-[50px] font-medium">{item.number}</p> |
| 80 | + <p className="text-md font-bold text-[#9B9EA1]">{item.text}</p> |
| 81 | + </div> |
| 82 | + ))} |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + </div> |
| 86 | + </div> |
| 87 | + </div> |
| 88 | + ); |
| 89 | +}; |
| 90 | + |
| 91 | +export default MethelyProfile; |
0 commit comments