-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nx-dev): add preliminary updates to homepage
- Loading branch information
Showing
14 changed files
with
2,562 additions
and
369 deletions.
There are no files selected for viewing
This file contains 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
109 changes: 0 additions & 109 deletions
109
nx-dev/nx-dev/public/images/background/waves-background.svg
This file was deleted.
Oops, something went wrong.
928 changes: 928 additions & 0 deletions
928
nx-dev/nx-dev/public/images/illustrations/nxdev-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
929 changes: 929 additions & 0 deletions
929
nx-dev/nx-dev/public/images/illustrations/nxdev-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains 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,12 +1,14 @@ | ||
export * from './lib/extensible-and-integrated'; | ||
export * from './lib/getting-started'; | ||
export * from './lib/hero'; | ||
export * from './lib/improve-worst-ci-case'; | ||
export * from './lib/logo-cloud'; | ||
export * from './lib/migrate'; | ||
export * from './lib/migrations-and-code-generation'; | ||
export * from './lib/monorepo-styles'; | ||
export * from './lib/newsletter'; | ||
export * from './lib/nx-is-fast'; | ||
export * from './lib/nx-statistics'; | ||
export * from './lib/nx-with-ci'; | ||
export * from './lib/testimonials'; | ||
export * from './lib/why-is-nx-fast'; |
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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,33 @@ | ||
import { ButtonLink } from '@nx/nx-dev/ui-common'; | ||
|
||
export function ImproveWorstCiCase(): JSX.Element { | ||
return ( | ||
<article | ||
id="getting-started" | ||
className="border-t border-b border-slate-200 bg-gradient-to-r from-cyan-500 to-blue-500 shadow-inner dark:border-slate-700" | ||
> | ||
<div className="mx-auto max-w-7xl py-12 px-4 sm:px-6 lg:flex lg:items-center lg:justify-between lg:py-24 lg:px-8"> | ||
<div> | ||
<h2 className="text-3xl font-bold tracking-tight text-slate-900 md:text-4xl"> | ||
<span className="block">Taste the performance,</span> | ||
<span className="block text-white"> | ||
improve your worst case CI times in 5 minutes | ||
</span> | ||
</h2> | ||
</div> | ||
<div className="mt-8 flex lg:mt-0 lg:flex-shrink-0"> | ||
<div className="inline-flex rounded-md"> | ||
<ButtonLink | ||
href="/concepts/dte" | ||
title="Improve your worst case CI times" | ||
variant="secondary" | ||
size="large" | ||
> | ||
Try it now! | ||
</ButtonLink> | ||
</div> | ||
</div> | ||
</div> | ||
</article> | ||
); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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.