-
Notifications
You must be signed in to change notification settings - Fork 13
Add personal builder page for Khano #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
3ee6fbd
adb5f7d
a17826e
c4576ee
5bb810d
fc75ca9
faaae01
e1671a5
1fca777
6c6bf7f
ba076f6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| import Image from "next/image"; | ||
| import { Address } from "@scaffold-ui/components"; | ||
| import type { NextPage } from "next"; | ||
|
|
||
| const KhanoPage: NextPage = () => { | ||
| return ( | ||
| <div className="flex flex-col items-center justify-center gap-6 p-10 text-center"> | ||
| <Image | ||
| src="https://github.com/MrKhano.png" | ||
| alt="Khano avatar" | ||
| width={160} | ||
| height={160} | ||
| className="rounded-full shadow-lg" | ||
| /> | ||
|
|
||
| <h1 className="text-4xl font-bold">Khano</h1> | ||
|
|
||
| <p className="max-w-xl text-lg text-gray-700 dark:text-gray-300"> | ||
| Crypto trader, builder, and Web3 adventurer — exploring the Ethereum rabbit hole one challenge at a time. Proud | ||
| member of BuidlGuidl Batch 22. | ||
| </p> | ||
|
|
||
| <div className="flex flex-col items-center gap-2"> | ||
| <p className="text-sm font-semibold">Address:</p> | ||
| <Address address="0x5258c93FbF34600a89bb1B7A57Fe9B981A693Fc7" /> | ||
|
||
| </div> | ||
|
|
||
| <div className="mt-6 flex space-x-8 text-lg"> | ||
| <a href="https://x.com/MrKhano" target="_blank" className="text-blue-400 hover:underline"> | ||
| </a> | ||
| <a href="https://github.com/MrKhano" target="_blank" className="text-purple-400 hover:underline"> | ||
| GitHub | ||
| </a> | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default KhanoPage; | ||
Uh oh!
There was an error while loading. Please reload this page.