Skip to content

Commit f9b9b52

Browse files
authored
issue #2- Added Rohan page (#11)
1 parent 281d233 commit f9b9b52

File tree

4 files changed

+89
-0
lines changed

4 files changed

+89
-0
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
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&apos;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&apos;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+
href="mailto:[email protected]"
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;

packages/nextjs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"react-copy-to-clipboard": "^5.1.0",
3131
"react-dom": "^18.2.0",
3232
"react-hot-toast": "^2.4.0",
33+
"react-icons": "^5.2.1",
3334
"use-debounce": "^8.0.4",
3435
"usehooks-ts": "^2.13.0",
3536
"viem": "2.17.4",
1.07 MB
Loading

yarn.lock

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2324,6 +2324,7 @@ __metadata:
23242324
react-copy-to-clipboard: ^5.1.0
23252325
react-dom: ^18.2.0
23262326
react-hot-toast: ^2.4.0
2327+
react-icons: ^5.2.1
23272328
tailwindcss: ^3.4.3
23282329
type-fest: ^4.6.0
23292330
typescript: 5.5.3
@@ -12009,6 +12010,15 @@ __metadata:
1200912010
languageName: node
1201012011
linkType: hard
1201112012

12013+
"react-icons@npm:^5.2.1":
12014+
version: 5.2.1
12015+
resolution: "react-icons@npm:5.2.1"
12016+
peerDependencies:
12017+
react: "*"
12018+
checksum: f084ea7409a3986c03b7805d0787d8526e2c988439a39f485cc526ec1b2eb6ec78e7b69345478151ce94bca8522737c6569203c8ab8b8ff08542b496f954bdfb
12019+
languageName: node
12020+
linkType: hard
12021+
1201212022
"react-is@npm:^16.13.1":
1201312023
version: 16.13.1
1201412024
resolution: "react-is@npm:16.13.1"

0 commit comments

Comments
 (0)