-
Notifications
You must be signed in to change notification settings - Fork 208
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
feat: basic frame debugger #137
Conversation
@@ -0,0 +1,36 @@ | |||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |||
|
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.
nit. for next PR, do we need this? My guess is not
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.
ah probably not, was autogenerated. will clean up on the next one
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.
following up on this, worth including because after removing it there are ~1000 files git tries to track. Updating the outer .gitignore
with this stuff would probably be confusing so going to keep it
|
||
export function Header() { | ||
return ( | ||
<div className={`flex w-full flex-col items-center gap-8 border-b ${BORDER_COLOR} py-8`}> |
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.
nit. next PR start using clsx
to better organize tailwind css
framegear/tailwind.config.ts
Outdated
|
||
const config: Config = { | ||
content: [ | ||
"./pages/**/*.{js,ts,jsx,tsx,mdx}", |
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 believe we don't have pages
so this could be removed
What changed? Why?
Added a new directory,
framegear
, at top level. This directory contains a standalone Next.js app which can validate the initial frame tags -- additional debugging and other features will be added in future PRs.We'll also want to determine how we want to ship this (e.g., if you globally install
onchainkit
does this become an available command in your path?) in the near future.Notes to reviewers
How has it been tested?
Screen.Recording.2024-02-18.at.11.28.20.AM.mov