Skip to content

Commit c8072fa

Browse files
committed
feat(nx-dev): add company video
1 parent d5b8908 commit c8072fa

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

nx-dev/nx-dev/pages/company.tsx

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { useRouter } from 'next/router';
22
import { NextSeo } from 'next-seo';
33
import { CoFounders, Hero, TheTeam, Layout } from '@nx/nx-dev/ui-company';
4+
import { CustomerLogos } from '@nx/nx-dev/ui-enterprise';
5+
import { SectionHeading } from '@nx/nx-dev/ui-common';
46

57
export function Company(): JSX.Element {
68
const router = useRouter();
@@ -31,6 +33,17 @@ export function Company(): JSX.Element {
3133
<Layout>
3234
<div>
3335
<Hero />
36+
<div className="mx-auto mt-32 max-w-3xl text-center">
37+
<SectionHeading
38+
as="h2"
39+
variant="subtitle"
40+
id="trusted"
41+
className="scroll-mt-24 font-medium tracking-tight text-slate-950 sm:text-3xl dark:text-white"
42+
>
43+
Trusted by leading OSS projects and Fortune 500 companies.
44+
</SectionHeading>
45+
</div>
46+
<CustomerLogos />
3447
</div>
3548
<div className="mt-32 lg:mt-56">
3649
<CoFounders />
Binary file not shown.

nx-dev/ui-company/src/lib/hero.tsx

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { SectionHeading } from '@nx/nx-dev/ui-common';
1+
'use client';
2+
import { SectionHeading, YouTube } from '@nx/nx-dev/ui-common';
23
import {
34
GlobeAltIcon,
45
TrophyIcon,
@@ -24,24 +25,28 @@ const statements = [
2425
"Since 2016 we've been helping global enterprises use build tools to optimize their development processes, speed up their CI and create better software.",
2526
},
2627
];
28+
2729
export function Hero(): JSX.Element {
2830
return (
2931
<section>
3032
<div className="mx-auto max-w-7xl px-6 lg:px-8">
3133
<div className="mx-auto max-w-3xl text-center">
3234
<SectionHeading as="h1" variant="display">
33-
About us
35+
We Help You Suceed at Scale
3436
</SectionHeading>
3537
<SectionHeading
3638
as="p"
3739
variant="subtitle"
3840
className="mx-auto mt-6 max-w-3xl"
3941
>
40-
We make developers
42+
Making developers
4143
<span className="mx-1 text-gray-500 line-through">10x</span>
4244
Nx more productive
4345
</SectionHeading>
4446
</div>
47+
<div className="mt-12">
48+
<YouTube src="https://youtu.be/Ut-FfVChAno" title="About Nx" />
49+
</div>
4550
<dl className="mt-24 grid grid-cols-1 gap-16 lg:grid lg:grid-cols-3">
4651
{statements.map((statement, _) => {
4752
return (

0 commit comments

Comments
 (0)