-
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): Move nx-cloud to app router
- Loading branch information
1 parent
19a0dd4
commit eb4a56a
Showing
9 changed files
with
73 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { | ||
Layout, | ||
Hero, | ||
TrustedBy, | ||
FasterAndCheaper, | ||
UnderstandWorkspace, | ||
EnhancedWithAi, | ||
AutomatedAgentsManagement, | ||
AgentNumberOverTime, | ||
Statistics, | ||
CallToAction, | ||
} from '@nx/nx-dev/ui-cloud'; | ||
import type { Metadata } from 'next'; | ||
|
||
export const metadata: Metadata = { | ||
title: 'Nx Cloud', | ||
description: | ||
'Nx Cloud is the end-to-end solution for smart, efficient and maintainable CI.', | ||
openGraph: { | ||
url: 'https://nx.dev/nx-cloud', | ||
title: 'Nx Cloud', | ||
description: | ||
'Nx Cloud is the end-to-end solution for smart, efficient and maintainable CI.', | ||
images: [ | ||
{ | ||
url: 'https://nx.dev/socials/nx-media.png', | ||
width: 800, | ||
height: 421, | ||
alt: 'Nx: Smart Monorepos · Fast CI', | ||
type: 'image/jpeg', | ||
}, | ||
], | ||
siteName: 'NxDev', | ||
type: 'website', | ||
}, | ||
}; | ||
|
||
export default function NxCloudPage(): JSX.Element { | ||
return ( | ||
<Layout> | ||
<Hero /> | ||
<TrustedBy /> | ||
|
||
<div className="mt-32 lg:mt-56"> | ||
<FasterAndCheaper /> | ||
</div> | ||
<div className="mt-32 lg:mt-56"> | ||
<UnderstandWorkspace /> | ||
</div> | ||
<div className="mt-32 lg:mt-56"> | ||
<EnhancedWithAi /> | ||
</div> | ||
<div className="mt-32 lg:mt-56"> | ||
<AutomatedAgentsManagement /> | ||
</div> | ||
<div className="mt-32 lg:mt-56"> | ||
<AgentNumberOverTime /> | ||
</div> | ||
<div className="mt-32 lg:mt-56"> | ||
<Statistics /> | ||
</div> | ||
<div className="mt-32 lg:mt-56"> | ||
<CallToAction /> | ||
</div> | ||
</Layout> | ||
); | ||
} |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use client'; | ||
import { | ||
AdjustmentsVerticalIcon, | ||
ArrowLongDownIcon, | ||
|
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,3 +1,4 @@ | ||
'use client'; | ||
import { | ||
Variants, | ||
animate, | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
'use client'; | ||
import { | ||
ArrowLongRightIcon, | ||
ArrowsRightLeftIcon, | ||
|