-
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.
* added 0xzeze page Co-authored-by: Emre Koca <[email protected]>
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
packages/nextjs/app/builders/0xfb8b972b0D1cF9BB242A40F7AEA8E9a1bF89E0E3/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,55 @@ | ||
import React from "react"; | ||
import Image from "next/image"; | ||
import { NextPage } from "next"; | ||
|
||
const Zeze : NextPage = () => { | ||
return ( | ||
<> | ||
<div className="basis-full md:basis-1/2 flex justify-center items-center h-screen"> | ||
<div className="basis-1/2 flex justify-center items-center h-screen"> | ||
<Image src="/myPhoto.jpeg" alt="200px" width={500} height={500} className="rounded-3xl shadow-xl" /> | ||
</div> | ||
<div className="basis-1/2 h-screen"> | ||
<div className="rounded-xl "> | ||
<div className="flex justify-center font-bold text-4xl mt-40"> Hi there! It's 0xzeze!</div> | ||
<div className="flex justify-center font-serif text-xl my-12"> | ||
I'm a computer science student exploring Web3 development. I'm excited about the possibilities | ||
of creating decentralized and secure applications. This new technology feels like the future, and I'm | ||
eager to dive in and learn more. | ||
</div> | ||
<div className="pr-5"> | ||
<div className="mockup-browser bg-base-300 border"> | ||
<div className="mockup-browser-toolbar"> | ||
<div className="input">My links</div> | ||
</div> | ||
<div className="bg-base-200 flex items-center justify-between px-12 py-12"> | ||
<a className="link link-hover" href="https://github.com/0xzeze" target="_blank"> | ||
Github | ||
</a> | ||
|
||
<a | ||
className="link link-hover" | ||
href="https://app.buidlguidl.com/builders/0xfb8b972b0D1cF9BB242A40F7AEA8E9a1bF89E0E3" | ||
target="_blank" | ||
> | ||
Buidl Guidl | ||
</a> | ||
|
||
<a | ||
className="link link-hover" | ||
href="https://element.market/account/0xfb8b972b0D1cF9BB242A40F7AEA8E9a1bF89E0E3" | ||
target="_blank" | ||
> | ||
Element Market | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; | ||
|
||
export default Zeze |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.