-
Notifications
You must be signed in to change notification settings - Fork 42
release: v0.6.31 #217
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
Merged
Merged
release: v0.6.31 #217
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ddae405
showcase: drop redundant stars badge
aryanmehrotra c58d03c
showcase: shared gradient layer + testimonials masonry fix
aryanmehrotra c7e72db
fix: docs mobile overflow + events reduced-motion + logo wall grid
aryanmehrotra a4058d5
revert: keep prose tables at default rendering
aryanmehrotra 91ff51d
merge: PR #213 (drop showcase stars badge) for combined test
aryanmehrotra 8648126
merge: PR #214 (showcase gradient + testimonials masonry) for combine…
aryanmehrotra 3448a3a
merge: PR #215 (logo wall + events RM + prose) for combined test
aryanmehrotra a0b4fc7
docs: fix GoFr brand casing in nav descriptions and search breadcrumbs
aryanmehrotra e73bcd0
merge: PR #216 (GoFr brand casing in nav + search) for release bundle
aryanmehrotra 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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| import { MarketingPage } from '@/components/MarketingPage' | ||
|
|
||
| const Layout = ({ children }) => <MarketingPage>{children}</MarketingPage> | ||
| const Layout = ({ children }) => <MarketingPage withGradient>{children}</MarketingPage> | ||
| export default Layout |
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| import { MarketingPage } from '@/components/MarketingPage' | ||
|
|
||
| const Layout = ({ children }) => <MarketingPage>{children}</MarketingPage> | ||
| const Layout = ({ children }) => <MarketingPage withGradient>{children}</MarketingPage> | ||
| export default Layout |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| import { MarketingPage } from '@/components/MarketingPage' | ||
|
|
||
| const Layout = ({ children }) => <MarketingPage>{children}</MarketingPage> | ||
| const Layout = ({ children }) => <MarketingPage withGradient>{children}</MarketingPage> | ||
| export default Layout |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| import Image from 'next/image' | ||
| import blurCyanImage from '@/images/blur-cyan.png' | ||
| import blurIndigoImage from '@/images/blur-indigo.png' | ||
|
|
||
| // Decorative gradient layer for the framework's pitch / showcase | ||
| // surfaces — homepage, /why-gofr, /comparison/*, /showcase, /migrate/*. | ||
| // Three pointer-events-none orbs distributed down the page at | ||
| // alternating sides, reusing the cyan + indigo vocabulary the hero | ||
| // already establishes. Drop inside any `relative overflow-x-clip` | ||
| // wrapper. | ||
| // | ||
| // Why an absolute layer instead of a CSS background-image: | ||
| // - Matches the existing Hero implementation (Image PNGs, opacity). | ||
| // - Lets us anchor each orb relative to a known parent, so different | ||
| // pages can opt in without re-tuning a body-level gradient. | ||
| // | ||
| // Why `unoptimized` is mandatory: the site builds with | ||
| // `output: 'export'`, which disables /_next/image. Without unoptimized, | ||
| // Next emits a /_next/image?url=... src that 404s in production and | ||
| // renders as a broken-image icon. | ||
| export function ShowcaseGradient() { | ||
| return ( | ||
|
Umang01-hash marked this conversation as resolved.
|
||
| <> | ||
| <Image | ||
| aria-hidden="true" | ||
| className="pointer-events-none absolute -left-32 top-[30%] hidden select-none opacity-20 sm:block" | ||
| src={blurCyanImage} | ||
| alt="" | ||
| width={530} | ||
| height={530} | ||
| loading="lazy" | ||
| unoptimized | ||
| /> | ||
| <Image | ||
| aria-hidden="true" | ||
| className="pointer-events-none absolute -right-40 top-[55%] hidden select-none opacity-20 sm:block" | ||
| src={blurIndigoImage} | ||
| alt="" | ||
| width={567} | ||
| height={567} | ||
| loading="lazy" | ||
| unoptimized | ||
| /> | ||
| <Image | ||
| aria-hidden="true" | ||
| className="pointer-events-none absolute -left-40 top-[80%] hidden select-none opacity-15 sm:block" | ||
| src={blurCyanImage} | ||
| alt="" | ||
| width={530} | ||
| height={530} | ||
| loading="lazy" | ||
| unoptimized | ||
| /> | ||
| </> | ||
| ) | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.