-
Notifications
You must be signed in to change notification settings - Fork 1
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
Landing page #44
Landing page #44
Conversation
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
Not sure if you meant for this to be reviewed yet, but it does have a lot of issues below 1300px and below 900px width |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
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.
Couple of typos in the content, but otherwise looks good!
Co-authored-by: Joe Caputo <joseph.caputo@projectliberty.io>
Co-authored-by: Joe Caputo <joseph.caputo@projectliberty.io>
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
src/routes/docs/+page.svelte
Outdated
<div class="min-h-[calc(100vh-100px)]"> | ||
<div class="relative lg:max-w-[100vw] xl:max-w-page"> | ||
<div class="absolute top-0 z-50 w-full"><Header {logoHex} {navColor} bind:section /></div> | ||
<div class={`relative w-[100vw] min-w-full sm:pt-[80px] lg:pt-[140px] vertical-lg:w-[100%]`}> | ||
<DocsBody /> | ||
</div> | ||
</div> | ||
</div> |
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 think you can get away with leaving src/routes/docs/+layout.svelte
alone and just doing this:
<div class="min-h-[calc(100vh-100px)]"> | |
<div class="relative lg:max-w-[100vw] xl:max-w-page"> | |
<div class="absolute top-0 z-50 w-full"><Header {logoHex} {navColor} bind:section /></div> | |
<div class={`relative w-[100vw] min-w-full sm:pt-[80px] lg:pt-[140px] vertical-lg:w-[100%]`}> | |
<DocsBody /> | |
</div> | |
</div> | |
</div> | |
<div> | |
<DocsBody /> | |
</div> |
Then you can also remove all the other section, color, and such.
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 cannot get away with all, it then does not align with landing page, plus header is needed. I remove an outer class which had no effect
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 can reset src/routes/docs/+layout.svelte
and have the header in there right?
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
🚀 Preview deployment for this PR is going up! Remember you might need to hard refresh to get the new content. Preview URL: https://www.frequency.xyz/_pr/44/ |
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. - Closes #31 ## Screenshot(s) Including screenshots helps reviewers know what to expect. ### Desktop  ### Mobile  ## Type of change Please delete options that are not relevant. - [x] New Feature # How to Test? Please describe how to test that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration 1. git clone the repository 2. `cd frequency-xyz && npm i` 3. `npm run dev` then got to `http://localhost:3000/docs` # Checklist: - [x] I have performed a self-review of my code - [ ] I have commented my code & PR, particularly in hard-to-understand areas - [ ] I have checked at all the breakpoints to make sure it works on all screen sizes --------- Co-authored-by: Joe Caputo <joseph.caputo@projectliberty.io>
Description
Please include a summary of the changes and the related issue. Please also include relevant motivation and context.
Screenshot(s)
Including screenshots helps reviewers know what to expect.
Desktop
Mobile
Type of change
Please delete options that are not relevant.
How to Test?
Please describe how to test that you ran to verify your changes. Provide instructions so we can reproduce. Please also
list any relevant details for your test configuration
cd frequency-xyz && npm i
npm run dev
then got tohttp://localhost:3000/docs
Checklist: