Skip to content

Commit

Permalink
feat(nx-dev): update home page (#26893)
Browse files Browse the repository at this point in the history
Add new sections and update information about Nx.

---------

Co-authored-by: Juri <[email protected]>
(cherry picked from commit 85d310a)
  • Loading branch information
bcabanes authored and FrozenPandaz committed Jul 16, 2024
1 parent a2855bc commit 03f907c
Show file tree
Hide file tree
Showing 244 changed files with 8,418 additions and 4,570 deletions.
8 changes: 8 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,14 @@ To display a terminal command, use:
‎```
````

You can also add a title to the shell as follows:

````
‎```shell {% title="Build the app" %}
‎ npx nx build
‎```
````

#### Terminal Output

You can display your terminal output with a dedicated component the same way you would show code.
Expand Down
46 changes: 24 additions & 22 deletions docs/shared/getting-started/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,32 @@ Find out more about [why you should use Nx](/getting-started/why-nx) or browse o

## Try Nx Yourself!

```shell
npx create-nx-workspace@latest
{% side-by-side %}

```shell {% title="Create a new workspace" %}
npx create-nx-workspace
```

```shell {% title="Add Nx to an existing workspace" %}
npx nx init
```

{% /side-by-side %}

Also, here are some recipes that give you more details based on the technology stack you're using:

{% cards cols="2" mdCols="4" smCols="2" moreLink="/recipes/adopting-nx" %}

{% link-card title="Add to Existing Monorepo" appearance="small" url="/recipes/adopting-nx/adding-to-monorepo" icon="pnpm" /%}

{% link-card title="Add to Any Project" appearance="small" url="/recipes/adopting-nx/adding-to-existing-project" icon="nx" /%}

{% link-card title="Migrate from Angular CLI" appearance="small" url="/recipes/angular/migration/angular" icon="angular" /%}

{% /cards %}
{% /tab %}
{% /tabs %}

## Learn Nx

{% cards cols="2" lgCols="4" mdCols="4" smCols="2" %}
Expand Down Expand Up @@ -57,26 +79,6 @@ npx create-nx-workspace@latest

{% /cards %}

## Have an Existing Project? Add Nx to it!

If you have an existing project and want to adopt Nx or migrate to Nx just run the following command which guides you through the migration process:

```shell
npx nx@latest init
```

Alternatively, here are some recipes that give you more details based on the technology stack you're using:

{% cards cols="2" mdCols="4" smCols="2" moreLink="/recipes/adopting-nx" %}

{% link-card title="Add to Existing Monorepo" appearance="small" url="/recipes/adopting-nx/adding-to-monorepo" icon="pnpm" /%}

{% link-card title="Add to Any Project" appearance="small" url="/recipes/adopting-nx/adding-to-existing-project" icon="nx" /%}

{% link-card title="Migrate from Angular CLI" appearance="small" url="/recipes/angular/migration/angular" icon="angular" /%}

{% /cards %}

## Pick Your Stack!

{% cards cols="3" lgCols="8" mdCols="6" smCols="5" moreLink="/showcase/example-repos" %}
Expand Down
6 changes: 3 additions & 3 deletions nx-dev/nx-dev/pages/community.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ export default function Community(): JSX.Element {
<div className="mx-auto max-w-7xl items-stretch px-4 py-12 sm:grid sm:grid-cols-1 sm:gap-8 sm:px-6 md:grid-cols-3 lg:px-8 lg:py-16">
<div className="md:col-span-2">
<header>
<SectionHeading as="h1" variant="title" id="champions">
<SectionHeading as="h1" variant="subtitle" id="champions">
Get to know our
</SectionHeading>
<SectionHeading
as="p"
variant="display"
variant="title"
id="nx-champions"
className="mt-4"
>
Expand All @@ -81,7 +81,7 @@ export default function Community(): JSX.Element {
</div>
</div>
</div>
<div className="mt-6 flex h-full w-full flex-col items-start items-stretch gap-6 md:mt-0">
<div className="mt-6 flex h-full w-full flex-col items-stretch gap-6 md:mt-0">
{champions3.map((data) => (
<ChampionCard key={data.name} data={data} />
))}
Expand Down
5 changes: 4 additions & 1 deletion nx-dev/nx-dev/pages/customers.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DefaultLayout } from '@nx/nx-dev/ui-common';
import { CallToAction, DefaultLayout } from '@nx/nx-dev/ui-common';
import { NextSeo } from 'next-seo';
import { useRouter } from 'next/router';

Expand Down Expand Up @@ -44,6 +44,9 @@ export function Customers(): JSX.Element {
<div className="mt-16 lg:mt-32">
<OssProjects />
</div>
<div className="mt-32 lg:mt-56">
<CallToAction />
</div>
</DefaultLayout>
</>
);
Expand Down
72 changes: 32 additions & 40 deletions nx-dev/nx-dev/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
import { AnnouncementBanner, Footer, Header } from '@nx/nx-dev/ui-common';
import { CallToAction, DefaultLayout } from '@nx/nx-dev/ui-common';
import { NextSeo } from 'next-seo';
import {
ExtensibleAndIntegrated,
GettingStarted,
CiForMonorepos,
Hero,
ImproveWorstCiCase,
Migrate,
MigrationsAndCodeGeneration,
MonorepoStyles,
Newsletter,
NxStatistics,
NxWithCi,
Testimonials,
SmarterToolsForMonorepos,
Statistics,
TeamAndCommunity,
TrustedBy,
WorkBetterAchieveMoreShipQuicker,
} from '@nx/nx-dev/ui-home';
import { NextSeo } from 'next-seo';

export default function Index(): JSX.Element {
return (
Expand All @@ -39,35 +35,31 @@ export default function Index(): JSX.Element {
}}
/>
<h1 className="sr-only">Next generation monorepo tool</h1>
<AnnouncementBanner />
<Header />
<main id="main" role="main">
<div className="w-full">
{/*HERO COMPONENT*/}
<Hero />
{/*NX CI*/}
<NxWithCi />
{/*NX STATISTICS*/}
<NxStatistics />
{/*MONOREPO STYLES*/}
<MonorepoStyles />
{/*WORST CASE CI TIMES*/}
<ImproveWorstCiCase />
{/*EXTENSIBLE & INTEGRATED*/}
<ExtensibleAndIntegrated />
{/*MIGRATE*/}
<Migrate />
{/*AFFECTED & CODE GENERATION*/}
<MigrationsAndCodeGeneration />
{/*GETTING STARTED*/}
<GettingStarted />
{/*TESTIMONIALS*/}
<Testimonials />
{/*NEWSLETTER*/}
<Newsletter />
{/*<AnnouncementBanner />*/}
<DefaultLayout isHome>
<Hero />
<div className="mt-16 lg:-mt-32">
<Statistics />
</div>
<div className="mt-32 lg:mt-56">
<TrustedBy />
</div>
<div className="mt-32 lg:mt-56">
<CiForMonorepos />
</div>
<div className="mt-32 lg:mt-56">
<WorkBetterAchieveMoreShipQuicker />
</div>
<div className="mt-32 lg:mt-56">
<SmarterToolsForMonorepos />
</div>
<div className="mt-32 lg:mt-56">
<TeamAndCommunity />
</div>
<div className="mt-32 lg:mt-56">
<CallToAction />
</div>
</main>
<Footer />
</DefaultLayout>
</>
);
}
87 changes: 87 additions & 0 deletions nx-dev/nx-dev/pages/shader.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
import { ShaderGradient, ShaderGradientCanvas } from 'shadergradient';

export default function Shader(): JSX.Element {
return (
<>
<div className="absolute left-0 top-0 z-10 h-screen w-screen overflow-hidden bg-white text-gray-50">
{/*COTTON CANDY*/}
{/*<ShaderGradientCanvas
pointerEvents="none"
eventPrefix="client"
fov={45}
pixelDensity={1}
className="pointer-events-none"
>
<ShaderGradient
brightness={4}
cDistance={5}
color1="#ebedff"
color2="#f3f2f8"
color3="#dbf8ff"
frameRate={10}
grain="off"
lightType="3d"
positionX={0}
positionY={1.8}
positionZ={0}
range="enabled"
rangeEnd={40}
rangeStart={0}
reflection={0.1}
rotationX={0}
rotationY={0}
rotationZ={-90}
shader="defaults"
type="waterPlane"
uDensity={1}
uFrequency={5.5}
uSpeed={0.3}
uStrength={3}
uTime={0.2}
/>
</ShaderGradientCanvas>*/}

{/*UNIVERSE*/}
<ShaderGradientCanvas
pointerEvents="none"
eventPrefix="client"
fov={45}
pixelDensity={1}
className="pointer-events-none"
>
<ShaderGradient
brightness={4}
cAzimuthAngle={180}
cameraZoom={1}
cDistance={4}
cPolarAngle={115}
color1="#5606FF"
color2="#FE8989"
color3="#000000"
frameRate={10}
grain="off"
lightType="3d"
positionX={-0.5}
positionY={0.1}
positionZ={0}
range="enabled"
rangeEnd={40}
rangeStart={0}
reflection={0.1}
rotationX={0}
rotationY={0}
rotationZ={235}
shader="defaults"
type="waterPlane"
uAmplitude={0}
uDensity={1.1}
uFrequency={5.5}
uSpeed={0.1}
uStrength={2.4}
uTime={0.2}
/>
</ShaderGradientCanvas>
</div>
</>
);
}
Binary file removed nx-dev/nx-dev/public/images/github-app.webp
Binary file not shown.
Binary file removed nx-dev/nx-dev/public/images/github-nxcloud.webp
Binary file not shown.
Binary file added nx-dev/nx-dev/public/images/home/crystal.avif
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added nx-dev/nx-dev/public/images/home/order-light.avif
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added nx-dev/nx-dev/public/images/home/yarn-dark.avif
Binary file not shown.
Binary file added nx-dev/nx-dev/public/images/home/yarn-light.avif
Binary file not shown.
Loading

0 comments on commit 03f907c

Please sign in to comment.