|
| 1 | +import React from "react"; |
| 2 | +import Image from "next/image"; |
| 3 | +//Icons |
| 4 | +import { FaGithub } from "react-icons/fa"; |
| 5 | +import { RiTwitterXFill } from "react-icons/ri"; |
| 6 | +import { SiGmail } from "react-icons/si"; |
| 7 | +import { Address } from "~~/components/scaffold-eth"; |
| 8 | + |
| 9 | +const RohanPersonalPage = () => { |
| 10 | + return ( |
| 11 | + <div className=" flex justify-center items-center"> |
| 12 | + <div> |
| 13 | + <div className=" pt-24 lg:pt-[100px]"> |
| 14 | + <div className="flex flex-col-reverse lg:flex-row items-center justify-center gap-x-[50px] md:mx-[550px]"> |
| 15 | + <div className=" w-full"> |
| 16 | + <h1 className=" text-[40px] font-bold md:my-[1rem]">Hey! I'm Rohan👋🏼</h1> |
| 17 | + <p className=" text-[14px] md:text-lg p-1 font-semibold w-full text-justify mb-[6px]"> |
| 18 | + I started as a front-end developer, and I've grown into someone who simply enjoys building |
| 19 | + regardless of the tech stack or language. I enjoy solving complex problems and am eager to dive deeper |
| 20 | + into the Web3 world. |
| 21 | + </p> |
| 22 | + <div className=" flex items-center gap-x-2 -my-3"> |
| 23 | + <p>Address :</p>{" "} |
| 24 | + <div className="bg-primary-content text-secondary px-3 py-2 rounded-[10px] my-3"> |
| 25 | + <Address address="0x4a9A95B6fe3b9416f0c78A8735Aa075c75AF46a4" /> |
| 26 | + </div> |
| 27 | + </div> |
| 28 | + <p className=" md:text-lg p-1 text-[17px] w-full text-justify mt-1 mb-3"> |
| 29 | + My{" "} |
| 30 | + <a href="https://rohan06.vercel.app/"> |
| 31 | + {" "} |
| 32 | + <span className=" underline font-bold hover:text-accent text-[17px]">Portfolio</span> |
| 33 | + </a> |
| 34 | + </p> |
| 35 | + |
| 36 | + <div className=" flex items-center justify-center lg:justify-start gap-5 text-[20px] lg:text-[23px] my-1 "> |
| 37 | + <a |
| 38 | + href={"https://github.com/rohan-ahire06"} |
| 39 | + target="_blank" |
| 40 | + rel="noopener noreferrer" |
| 41 | + className=" hover:text-accent duration-300 ease-in-out text-[1.8rem]" |
| 42 | + > |
| 43 | + <FaGithub /> |
| 44 | + </a> |
| 45 | + <a |
| 46 | + href={"https://github.com/rohan-ahire06"} |
| 47 | + target="_blank" |
| 48 | + rel="noopener noreferrer" |
| 49 | + className=" hover:text-accent duration-300 ease-in-out text-[1.8rem]" |
| 50 | + > |
| 51 | + <RiTwitterXFill /> |
| 52 | + </a> |
| 53 | + <a |
| 54 | + |
| 55 | + className=" hover:text-accent duration-300 ease-in-out text-[1.8rem]" |
| 56 | + > |
| 57 | + <SiGmail /> |
| 58 | + </a> |
| 59 | + </div> |
| 60 | + </div> |
| 61 | + |
| 62 | + <div className=" relative rounded-full overflow-hidden h-auto w-[270px] md:mb-20"> |
| 63 | + <Image |
| 64 | + src={"/builders/avatars/0x4a9A95B6fe3b9416f0c78A8735Aa075c75AF46a4.jpg"} |
| 65 | + width={500} |
| 66 | + height={500} |
| 67 | + alt={"mtpic"} |
| 68 | + className=" h-full w-full " |
| 69 | + /> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + ); |
| 76 | +}; |
| 77 | + |
| 78 | +export default RohanPersonalPage; |
0 commit comments