-
Notifications
You must be signed in to change notification settings - Fork 10
Completed task-a and task-b #24
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
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
Hello, thank you for your personal page! :)
I’d like to ask you to improve your PR’s description:
- Please add a screenshot of what your page looks like. This is a common practice in many open-source projects, making it easier for reviewers to identify issues and navigate through the many PRs we have to review.
- This PR should only solve issue #8. You can remove the mention of #9. To properly link the task, use
#
followed by the issue number. - Add your Ethereum address or ENS domain — no need to include your Telegram name.
- Checkboxes should have an
x
in the middle as part of Markdown formatting.
And here comes my review. Things I think you should improve in your code:
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.
Oops! I think you're sending this file by mistake. It's completely unrelated to your personal page, so please keep it outside of this PR. Let me know if you need help removing it from the PR using Git.
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 change is also unrelated to your personal page, please remove it from the PR.
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.
You are removing another builder's page. Please, revert this change.
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 change is also unrelated to your personal page, please remove it from the PR.
packages/nextjs/app/builders/0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3/page.tsx
Outdated
Show resolved
Hide resolved
style={{ | ||
minHeight: "100vh", | ||
background: "linear-gradient(135deg, #e0e7ff 0%, #f0fdfa 100%)", | ||
display: "flex", | ||
alignItems: "center", | ||
justifyContent: "center", | ||
fontFamily: "Inter, Arial, sans-serif", | ||
}} |
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 project follows the utility-first CSS approach, meaning we find it easier to read and style the code by adding pre-built CSS classes directly to the HTML. We're using Tailwind 4.1.3. I suggest checking out its documentation and the rest of the project code. I assure you the learning curve is easy.
packages/nextjs/app/builders/0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3/page.tsx
Outdated
Show resolved
Hide resolved
75a216c
to
8c6175d
Compare
8c6175d
to
4c83832
Compare
Hi sir! I mad the required changes but I think I have messed up while pushing these commits. At first I have used hard reset to go in earlier position of the project and then faced problem to push the the new changes/code so searched online and did some rebasing thing. Now I don't know I have did thing in right way or not. Please help me out in this regard. |
Hi sir! I mad the required changes but I think I have messed up while
pushing these commits. At first I have used hard reset to go in earlier
position of the project and then faced problem to push the the new
changes/code so searched online and did some rebasing thing. Now I don't
know I have did thing in right way or not. Please help me out in this
regard.
…On Mon, Jul 14, 2025 at 8:46 PM Gil Lopes Bueno ***@***.***> wrote:
***@***.**** requested changes on this pull request.
Hello, thank you for your personal page! :)
I’d like to ask you to improve your PR’s description:
- Please add a screenshot of what your page looks like. This is a
common practice in many open-source projects, making it easier for
reviewers to identify issues and navigate through the many PRs we have to
review.
- This PR should only solve issue #8
<#8>. You
can remove the mention of #9
<#9>. To
properly link the task, use # followed by the issue number.
- Add your Ethereum address or ENS domain — no need to include your
Telegram name.
- Checkboxes should have an x in the middle as part of Markdown
formatting.
And here comes my review. Things I think you should improve in your code:
------------------------------
On packages/hardhat/contracts/CheckIn.sol
<#24 (comment)>
:
Oops! I think you're sending this file by mistake. It's completely
unrelated to your personal page, so please keep it outside of this PR. Let
me know if you need help removing it from the PR using Git.
------------------------------
On packages/hardhat/deploy/00_deploy_your_contract.ts
<#24 (comment)>
:
This change is also unrelated to your personal page, please remove it from
the PR.
------------------------------
On
packages/nextjs/app/builders/0x307F9e12F738d3Aa9B4373B5B68BDD7C3Dc2FCf6/page.tsx
<#24 (comment)>
:
You are removing another builder's page. Please, revert this change.
------------------------------
On packages/nextjs/contracts/deployedContracts.ts
<#24 (comment)>
:
This change is also unrelated to your personal page, please remove it from
the PR.
------------------------------
In
packages/nextjs/app/builders/0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3/page.tsx
<#24 (comment)>
:
> @@ -0,0 +1,107 @@
+// app/builder/address/page.tsx
+
+const AVATAR_URL = "https://avatars.githubusercontent.com/u/583231?v=4";
+const WALLET_ADDRESS = "0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3";
+
+const SOCIALS = [
+ { name: "Twitter", url: "https://twitter.com/yourhandle", icon: "🐦" },
+ { name: "GitHub", url: "https://github.com/yourhandle", icon: "💻" },
+ { name: "LinkedIn", url: "https://linkedin.com/in/yourhandle", icon: "🔗" },
+];
+
+export default function Web3ProfilePage() {
You might want to consider typing your page as NextPage since we are using
TypeScript, as this ensures better integration and adds clarity for future
maintainers by indicating that the component is a Next.js page.
------------------------------
In
packages/nextjs/app/builders/0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3/page.tsx
<#24 (comment)>
:
> + style={{
+ minHeight: "100vh",
+ background: "linear-gradient(135deg, #e0e7ff 0%, #f0fdfa 100%)",
+ display: "flex",
+ alignItems: "center",
+ justifyContent: "center",
+ fontFamily: "Inter, Arial, sans-serif",
+ }}
This project follows the utility-first CSS approach, meaning we find it
easier to read and style the code by adding pre-built CSS classes directly
to the HTML. We're using Tailwind 4.1.3. I suggest checking out its
documentation and the rest of the project code. I assure you the learning
curve is easy.
------------------------------
In
packages/nextjs/app/builders/0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3/page.tsx
<#24 (comment)>
:
> + <img
+ src={AVATAR_URL}
+ alt="Avatar"
+ style={{
+ width: "100px",
+ height: "100px",
+ borderRadius: "50%",
+ objectFit: "cover",
+ boxShadow: "0 2px 8px rgba(0,0,0,0.10)",
+ marginBottom: "18px",
+ }}
+ />
Consider using Next.js's <Image> component for better performance and
built-in optimizations like lazy loading and responsive sizing.
—
Reply to this email directly, view it on GitHub
<#24 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BQKFU6NDIZLMKHV44JZKEVT3IPGFLAVCNFSM6AAAAACBK2DJFCVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTAMJWHAZTKOBWHA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
@GulAhmedshah yes, you actually didn't revert the changes to the files I mentioned. Let me know if you need help with git. |
Yes sir please help me out How can I revert the changes. |
Pleas, also make it clear to me that if I made some changes in project then I should just simply push it to the repo? |
An other option with me is to clone the project and again make my changes and push and PR the changes? should I go this way? |
@GulAhmedshah Yes, you can simply push to your branch and the PR will be updated. Send me a DM on Telegram so we can talk about reverting changes with Git. |
4c83832
to
a2960b8
Compare
a2960b8
to
9370e51
Compare
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.
Thank you for the update.
packages/nextjs/app/builders/0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3/page.tsx
Show resolved
Hide resolved
9370e51
to
d89c29d
Compare
height={100} | ||
className="rounded-full object-cover shadow-sm mx-auto mb-4" | ||
priority | ||
unoptimized |
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.
Please, optimize it! hahaha
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.
haha sir but when I optimize it, it require me to update the next config file. M I allowed to do that?
@@ -3,6 +3,9 @@ import type { NextConfig } from "next"; | |||
const nextConfig: NextConfig = { | |||
reactStrictMode: true, | |||
devIndicators: false, | |||
images: { | |||
domains: ["avatars.githubusercontent.com"], |
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.
domains
is deprecated, please, use remotePatterns
instead.
Description
Added my personal page named pag.tsx. The following is the screenshot of my page.

Additional Information
Related Issues
_Closes #8
Your ENS/address: 0xaC1bBf2Aba61D6fC6fCbade72eCe3362de4724c3