From 0d24530bbe3e57e99502eb89bd5566401a6163a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daphn=C3=A9=20Popin?= Date: Mon, 6 Nov 2023 11:44:24 +0100 Subject: [PATCH] Ed's feedback homepage: button size + add new signup button on top of price table (#2391) --- front/components/Button.tsx | 4 +++- front/pages/index.tsx | 14 +++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/front/components/Button.tsx b/front/components/Button.tsx index 14175a40beda..8dc75bbb7452 100644 --- a/front/components/Button.tsx +++ b/front/components/Button.tsx @@ -105,12 +105,14 @@ export function SignInDropDownButton({ export function SignUpDropDownButton({ buttonVariant = "primary", buttonLabel = "Start with Dust", + buttonSize = "sm", buttonIcon = RocketIcon, buttonClassname = "", onClickGoogle, }: { buttonVariant?: "primary" | "secondary" | "tertiary"; buttonLabel?: string; + buttonSize?: "sm" | "md" | "lg"; buttonIcon?: typeof Icon; buttonClassname?: string; onClickGoogle: () => void; @@ -121,7 +123,7 @@ export function SignUpDropDownButton({