From 729751804bbb4ff67dad202465e6a3faf6ec5579 Mon Sep 17 00:00:00 2001 From: Arik Chakma Date: Tue, 4 Apr 2023 00:18:48 +0600 Subject: [PATCH] chore: best practices buttons --- src/components/BestPracticeHeader.astro | 63 +++++++++++++++++----- src/components/Login/AccountDropdown.astro | 4 +- 2 files changed, 51 insertions(+), 16 deletions(-) diff --git a/src/components/BestPracticeHeader.astro b/src/components/BestPracticeHeader.astro index 3b1c08734..38ac3971f 100644 --- a/src/components/BestPracticeHeader.astro +++ b/src/components/BestPracticeHeader.astro @@ -2,6 +2,7 @@ import BestPracticeHint from './BestPracticeHint.astro'; import DownloadPopup from './DownloadPopup.astro'; import Icon from './Icon.astro'; +import LoginPopup from './Login/LoginPopup.astro'; import SubscribePopup from './SubscribePopup.astro'; export interface Props { @@ -15,23 +16,22 @@ const { title, description, bestPracticeId, isUpcoming = false } = Astro.props; const isBestPracticeReady = !isUpcoming; --- - - +
-
+
-

+

{title}

-

{description}

+

{description}

+ + diff --git a/src/components/Login/AccountDropdown.astro b/src/components/Login/AccountDropdown.astro index 345f68afc..344b32d54 100644 --- a/src/components/Login/AccountDropdown.astro +++ b/src/components/Login/AccountDropdown.astro @@ -4,13 +4,13 @@ import Icon from '../Icon.astro';