-
Notifications
You must be signed in to change notification settings - Fork 12
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
Open
MrKhano
wants to merge
11
commits into
BuidlGuidl:main
Choose a base branch
from
MrKhano:builder-khano
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+52
−0
Open
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3ee6fbd
Add personal builder page for Khano
MrKhano adb5f7d
Fix builder folder name and preview
MrKhano a17826e
Restore builder page in correct folder
MrKhano c4576ee
Remove unrelated hardhat files from PR
MrKhano 5bb810d
Restore hardhat.config.ts to main version
MrKhano fc75ca9
Update builder page with avatar and social links
MrKhano faaae01
fix: builder page images + address spinner
MrKhano e1671a5
refactor: builder page server component + client AddressBlock
MrKhano 1fca777
fix: use correct Address component and remove AddressBlock
MrKhano 6c6bf7f
fix: builder page address checksum + Address component displaying pro…
MrKhano ba076f6
chore: restore layout.tsx and .gitignore to match main branch
MrKhano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -21,3 +21,4 @@ node_modules | |
|
|
||
| # cli | ||
| dist | ||
| .vercel | ||
40 changes: 40 additions & 0 deletions
40
packages/nextjs/app/builders/0x5258c93FbF34600a89bb1B7A57Fe9B981A693Fc7/page.tsx
This file contains hidden or 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,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" | ||
| /> | ||
MrKhano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| <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; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is out of the scope of your issue.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes indeed, I removed the file |
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is out of the scope of your issue. It's something that should be aligned with the team.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed the file