diff --git a/apps/web/app/(app)/[emailAccountId]/assistant/AIChatButton.tsx b/apps/web/app/(app)/[emailAccountId]/assistant/AIChatButton.tsx index dfdf7267c9..1f965a65f3 100644 --- a/apps/web/app/(app)/[emailAccountId]/assistant/AIChatButton.tsx +++ b/apps/web/app/(app)/[emailAccountId]/assistant/AIChatButton.tsx @@ -10,7 +10,7 @@ export function AIChatButton() { return ( + + + + ); +} diff --git a/apps/web/components/Typography.tsx b/apps/web/components/Typography.tsx index 740b081070..1595b1b962 100644 --- a/apps/web/components/Typography.tsx +++ b/apps/web/components/Typography.tsx @@ -17,6 +17,18 @@ const PageHeading = forwardRef< )); PageHeading.displayName = "PageHeading"; +const PageSubHeading = forwardRef< + HTMLParagraphElement, + React.HTMLAttributes +>(({ className, ...props }, ref) => ( +

+)); +PageSubHeading.displayName = "PageSubHeading"; + const SectionHeader = forwardRef< HTMLHeadingElement, React.HTMLAttributes @@ -108,6 +120,7 @@ TextLink.displayName = "TextLink"; export { PageHeading, + PageSubHeading, SectionHeader, TypographyH3, TypographyH4, diff --git a/apps/web/components/YouTubeVideo.tsx b/apps/web/components/YouTubeVideo.tsx index 73a668aa80..6a81678648 100644 --- a/apps/web/components/YouTubeVideo.tsx +++ b/apps/web/components/YouTubeVideo.tsx @@ -3,6 +3,7 @@ import { cn } from "@/utils"; export function YouTubeVideo(props: { videoId: string; + title?: string; iframeClassName?: string; className?: string; opts?: { @@ -16,6 +17,7 @@ export function YouTubeVideo(props: { return (