-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added babacan.eth builder profile page (#19)
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
packages/nextjs/pages/builders/0x5D70E3b540f58beCd10B74f6c0958b31e3190DA7.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,54 @@ | ||
import Image from "next/image"; | ||
|
||
const BabacanBuilderProfile = () => { | ||
return ( | ||
<div className="flex p-8"> | ||
<div className="w-1/8 pr-10"> | ||
<Image width={200} height={200} src="/babacan.png" alt="Avatar" className="w-full h-auto rounded-full" /> | ||
</div> | ||
<div className="flex flex-col w-2/4"> | ||
<p className="text-lg font-bold mb-5">Hey I'm Oguzhan | babacan.eth</p> | ||
<p className="mb-4"> | ||
I'm from Turkey that's why my name seems odd (yeah I know I know 😁). It's hard to pronounce it | ||
but let me give you a hint: it's resembling the word “awesome” 😎 but with 'n' | ||
instead of 'm'. | ||
</p> | ||
<p> | ||
Currently, I've been working as a C++ dev so I dont have much experience in web design or frontend. | ||
I'm in the learning phase of React and Javascript. Hope I'll be better in a couple of months I enjoy | ||
writing code, scuba-diving, and running. | ||
</p> | ||
<div className="flex flex-col bg-base-100 py-2 text-center items-center max-w-xs rounded-3xl"> | ||
<p className="mb-4">You can reach out to me from:</p> | ||
<a | ||
href="https://twitter.com/0xBabacan" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-blue-500 hover:text-yellow-500" | ||
> | ||
</a> | ||
<a | ||
href="https://github.com/0xBabacan" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-blue-500 hover:text-yellow-500" | ||
> | ||
GitHub | ||
</a> | ||
<a | ||
href="https://t.me/xBabacan" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-blue-500 hover:text-yellow-500" | ||
> | ||
Telegram | ||
</a> | ||
</div> | ||
<p className="mb-5">Stay with Scaffold ETH 🚀</p> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default BabacanBuilderProfile; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.