Skip to content

Commit

Permalink
docs(nxdev): add James as speaker (nrwl#11723)
Browse files Browse the repository at this point in the history
  • Loading branch information
juristr authored Aug 25, 2022
1 parent 44d1f2c commit 1769edb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
13 changes: 13 additions & 0 deletions nx-dev/nx-dev/pages/conf.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
import { NextSeo } from 'next-seo';
import Link from 'next/link';
import { useRouter } from 'next/router';
import Script from 'next/script';

export default function ConfPage(): JSX.Element {
const router = useRouter();
Expand Down Expand Up @@ -513,6 +514,18 @@ export default function ConfPage(): JSX.Element {
</div>
</main>
<Footer useDarkBackground={true} />
<Script
id="twitter-campain-pixelcode"
strategy="afterInteractive"
dangerouslySetInnerHTML={{
__html: `
!function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
},s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',
a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
twq('config','obtp4');
`,
}}
/>
</>
);
}
6 changes: 3 additions & 3 deletions nx-dev/ui-common/src/lib/announcement-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export function AnnouncementBanner(): JSX.Element {
<span className="md:hidden">
<Link href="/conf?utm_source=announcement-banner">
<a className="text-white underline">
Nx Conf on October 17th at Phoenix AZ!
Nx Conf on October 17th in Phoenix AZ!
</a>
</Link>
</span>
<span className="hidden md:inline">
<span className="font-black">
Nx Conf on October 17th at Phoenix AZ
Nx Conf on October 17th in Phoenix AZ
</span>
, do not miss out!
, do not miss it!
</span>
<span className="ml-2 inline-block">
<Link href="/conf?utm_source=announcement-banner">
Expand Down
7 changes: 4 additions & 3 deletions nx-dev/ui-conference/src/lib/conf-schedule-short.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ export function ConfScheduleShort(): JSX.Element {
{
type: 'event',
time: '11:00 - 11:30am (UTC-07:00)',
title: 'TBA',
description: 'TBA',
speakers: [],
title: 'Lerna Reborn',
description:
"Lerna blazed the original trail in the open-source JavaScript monorepo space, and the whole ecosystem has benefitted immensely from that experience. It remains extremely popular for versioning/publishing and full monorepo workspace management, and now that the Nrwl Team has taken over stewardship of the project, we want to share some of the great updates we've made over the last few months as well as what we have planned for the near future.",
speakers: ['James Henry'],
videoUrl: '',
},
{
Expand Down
7 changes: 7 additions & 0 deletions nx-dev/ui-conference/src/lib/conf-speakers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ export function ConfSpeakers(): JSX.Element {
name: 'Rareş Matei',
twitter: '__rares',
},
{
description:
'James leverages his expert knowledge of Nx to help the biggest enterprises on the planet provide maximum value to their customers. He is a prolific open-source contributor, ESLint Core Team Alum, and has worked on a number of projects alongside the TypeScript Team.',
imageUrl: '/images/conf/james-henry.webp',
name: 'James Henry',
twitter: 'MrJamesHenry',
},
];

function chunkList<ITEM>(itemList: ITEM[], chunkSize: number): Array<ITEM[]> {
Expand Down

0 comments on commit 1769edb

Please sign in to comment.