diff --git a/README.md b/README.md index c1edde231c..9d80512c37 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ Learn more in our [docs](https://docs.getinboxzero.com). - [Prisma](https://www.prisma.io/) - [Upstash](https://upstash.com/) - [Turborepo](https://turbo.build/) +- [Popsy Illustrations](https://popsy.co/) ## Star History diff --git a/apps/web/app/(app)/[emailAccountId]/briefs/Onboarding.tsx b/apps/web/app/(app)/[emailAccountId]/briefs/Onboarding.tsx index c28cf5817b..6c214d3053 100644 --- a/apps/web/app/(app)/[emailAccountId]/briefs/Onboarding.tsx +++ b/apps/web/app/(app)/[emailAccountId]/briefs/Onboarding.tsx @@ -1,13 +1,11 @@ "use client"; +import { CardFooter, Card } from "@/components/ui/card"; import { - CardContent, - CardHeader, - CardFooter, - CardTitle, - CardDescription, -} from "@/components/ui/card"; -import { MessageText } from "@/components/Typography"; + MessageText, + SectionDescription, + TypographyH3, +} from "@/components/Typography"; import { ConnectCalendar } from "@/app/(app)/[emailAccountId]/calendars/ConnectCalendar"; import { UserIcon, MailIcon, LightbulbIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; @@ -16,9 +14,9 @@ import { ItemContent, ItemDescription, ItemGroup, - ItemMedia, ItemTitle, } from "@/components/ui/item"; +import Image from "next/image"; export function BriefsOnboarding({ emailAccountId, @@ -32,53 +30,54 @@ export function BriefsOnboarding({ isEnabling?: boolean; }) { return ( -
- - Meeting Briefs - + + Meeting Briefs + +
+ Meeting Briefs + Receive email briefings before meetings with external guests. - - + +
- - - - - - - - Attendee research - - Who they are, their company, and role - - - - - - - - - Email history - - Recent conversations with this person - - - - - - - - - Key context - - Important details from past discussions - - - - - + + + + + Attendee research + + Who they are, their company, and role + + + + + + + Email history + + Recent conversations with this person + + + + + + + Key context + + Important details from past discussions + + + + - + {hasCalendarConnected ? ( <> @@ -97,6 +96,6 @@ export function BriefsOnboarding({ )} -
+ ); }