-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat(platform): Add image cards to devdocs getting started page #12110
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
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e6dc5bf
Added awarness section to top level pages
antonpirker c9e8381
Updated startpage
antonpirker eff908c
Merge branch 'master' into antonpirker/develop/startpage
antonpirker 08a25c3
Added dev infra to start page
antonpirker 9f05a8e
Merge branch 'master' into antonpirker/develop/startpage
antonpirker bfb33f4
Update to new top level section 'backend'
antonpirker e4de8bf
Merge branch 'master' into antonpirker/develop/startpage
antonpirker 2dfbee9
Merge branch 'master' into antonpirker/develop/startpage
antonpirker b9bf08d
Added some icons (probably the wrong way, but it kind of works)
antonpirker 1240aaf
add cardgrid
chargome 49f15d0
Apply suggestions from code review
antonpirker 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
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,82 @@ | ||
| import BackendImg from 'sentry-docs/imgs/back-end.png'; | ||
| import InfraImg from 'sentry-docs/imgs/dev-infra.png'; | ||
| import FrontendImg from 'sentry-docs/imgs/front-end.png'; | ||
| import IngestImg from 'sentry-docs/imgs/ingest.png'; | ||
| import IntegrationsImg from 'sentry-docs/imgs/integrate.png'; | ||
| import SkdsImg from 'sentry-docs/imgs/sdks.png'; | ||
| import ServicesImg from 'sentry-docs/imgs/services.png'; | ||
| import SelfHostedImg from 'sentry-docs/imgs/support.png'; | ||
|
|
||
| import {Card} from './card'; | ||
|
|
||
| export function DevDocsCardGrid() { | ||
| return ( | ||
| <div className="flex flex-wrap gap-6 not-prose"> | ||
| <Card | ||
| className="w-full" | ||
| href="/development-infrastructure/" | ||
| title="Development Infrastructure" | ||
| description="How to get your local dev environment up and running." | ||
| image={InfraImg} | ||
| imageAlt="Development Infrastructure" | ||
| /> | ||
|
|
||
| <Card | ||
| className="w-full md:w-[calc(50%-12px)]" | ||
| href="/backend/" | ||
| title="Backend" | ||
| description="The monolith that is powering Sentry." | ||
| image={BackendImg} | ||
| imageAlt="Backend" | ||
| /> | ||
| <Card | ||
| className="w-full md:w-[calc(50%-12px)]" | ||
| href="/frontend/" | ||
| title="Frontend" | ||
| description="How we write frontend code." | ||
| image={FrontendImg} | ||
| imageAlt="Frontend" | ||
| /> | ||
| <Card | ||
| className="w-full md:w-[calc(50%-12px)]" | ||
| href="/services/" | ||
| title="Services" | ||
| description="Running besides the monolith." | ||
| image={ServicesImg} | ||
| imageAlt="Services" | ||
| /> | ||
| <Card | ||
| className="w-full md:w-[calc(50%-12px)]" | ||
| href="/integrations/" | ||
| title="Integrations" | ||
| imageAlt="Integrations" | ||
| description="Connecting Sentry to other products." | ||
| image={IntegrationsImg} | ||
| /> | ||
| <Card | ||
| className="w-full md:w-[calc(50%-12px)]" | ||
| href="/ingestion/" | ||
| title="Ingestion" | ||
| imageAlt="Ingestion" | ||
| description="Receiving and processing data." | ||
| image={IngestImg} | ||
| /> | ||
| <Card | ||
| className="w-full md:w-[calc(50%-12px)]" | ||
| href="/sdk/" | ||
| title="SDKs" | ||
| imageAlt="SDKs" | ||
| description="Instrumenting users code." | ||
antonpirker marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| image={SkdsImg} | ||
| /> | ||
| <Card | ||
| className="w-full" | ||
| href="/self-hosted/" | ||
| title="Self-Hosted Sentry" | ||
| imageAlt="Self-Hosted Sentry" | ||
| description="How you can run all of Sentry on your own server, without paying anything." | ||
| image={SelfHostedImg} | ||
| /> | ||
| </div> | ||
| ); | ||
| } | ||
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 |
|---|---|---|
|
|
@@ -78,7 +78,7 @@ | |
| margin-bottom: 1.75rem; | ||
| } | ||
|
|
||
| h3 { | ||
| h3 :not(.not-prose) { | ||
| font-size: 1.125rem; | ||
| } | ||
|
|
||
|
|
||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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.