import { ButtonLink, SectionHeading, TextLink } from '@nx/nx-dev/ui-common'; import { cx } from '@nx/nx-dev/ui-primitives'; import React, { ReactElement } from 'react'; export function WebinarCallout(): ReactElement { return ( <> Resources

Learn more about using Nx with Java projects with these resources.

); } interface ResourceCardProps { title: string; description: string; linkText: string; href: string; } function ResourceCard({ title, description, linkText, href, }: ResourceCardProps): ReactElement { return (

{title}

{description}

{linkText}
); }