-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
packages/nextjs/app/builders/0x4a9A95B6fe3b9416f0c78A8735Aa075c75AF46a4/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
import React from "react"; | ||
import Image from "next/image"; | ||
//Icons | ||
import { FaGithub } from "react-icons/fa"; | ||
import { RiTwitterXFill } from "react-icons/ri"; | ||
import { SiGmail } from "react-icons/si"; | ||
import { Address } from "~~/components/scaffold-eth"; | ||
|
||
const RohanPersonalPage = () => { | ||
return ( | ||
<div className=" flex justify-center items-center"> | ||
<div> | ||
<div className=" pt-24 lg:pt-[100px]"> | ||
<div className="flex flex-col-reverse lg:flex-row items-center justify-center gap-x-[50px] md:mx-[550px]"> | ||
<div className=" w-full"> | ||
<h1 className=" text-[40px] font-bold md:my-[1rem]">Hey! I'm Rohan👋🏼</h1> | ||
<p className=" text-[14px] md:text-lg p-1 font-semibold w-full text-justify mb-[6px]"> | ||
I started as a front-end developer, and I've grown into someone who simply enjoys building | ||
regardless of the tech stack or language. I enjoy solving complex problems and am eager to dive deeper | ||
into the Web3 world. | ||
</p> | ||
<div className=" flex items-center gap-x-2 -my-3"> | ||
<p>Address :</p>{" "} | ||
<div className="bg-primary-content text-secondary px-3 py-2 rounded-[10px] my-3"> | ||
<Address address="0x4a9A95B6fe3b9416f0c78A8735Aa075c75AF46a4" /> | ||
</div> | ||
</div> | ||
<p className=" md:text-lg p-1 text-[17px] w-full text-justify mt-1 mb-3"> | ||
My{" "} | ||
<a href="https://rohan06.vercel.app/"> | ||
{" "} | ||
<span className=" underline font-bold hover:text-accent text-[17px]">Portfolio</span> | ||
</a> | ||
</p> | ||
|
||
<div className=" flex items-center justify-center lg:justify-start gap-5 text-[20px] lg:text-[23px] my-1 "> | ||
<a | ||
href={"https://github.com/rohan-ahire06"} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className=" hover:text-accent duration-300 ease-in-out text-[1.8rem]" | ||
> | ||
<FaGithub /> | ||
</a> | ||
<a | ||
href={"https://github.com/rohan-ahire06"} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className=" hover:text-accent duration-300 ease-in-out text-[1.8rem]" | ||
> | ||
<RiTwitterXFill /> | ||
</a> | ||
<a | ||
href="mailto:[email protected]" | ||
className=" hover:text-accent duration-300 ease-in-out text-[1.8rem]" | ||
> | ||
<SiGmail /> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div className=" relative rounded-full overflow-hidden h-auto w-[270px] md:mb-20"> | ||
<Image | ||
src={"/builders/avatars/0x4a9A95B6fe3b9416f0c78A8735Aa075c75AF46a4.jpg"} | ||
width={500} | ||
height={500} | ||
alt={"mtpic"} | ||
className=" h-full w-full " | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default RohanPersonalPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+1.07 MB
...s/nextjs/public/builders/avatars/0x4a9A95B6fe3b9416f0c78A8735Aa075c75AF46a4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters