From 880019d62dc55e0ff4b09d3ccd2843e30b8b399b Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Tue, 12 Mar 2024 14:52:48 -0500 Subject: [PATCH] Clarify DB landing page (#1012) --- src/pages/db/_components/Hero.astro | 6 ++-- src/pages/db/_components/Pill.astro | 45 +++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 src/pages/db/_components/Pill.astro diff --git a/src/pages/db/_components/Hero.astro b/src/pages/db/_components/Hero.astro index 846b9256e..9216b12e4 100644 --- a/src/pages/db/_components/Hero.astro +++ b/src/pages/db/_components/Hero.astro @@ -2,6 +2,7 @@ import PageTitleBlock from "~/components/PageTitleBlock.astro" import CTA from "../_components/CTA.astro" import HeroVideo from "./HeroVideo.astro" +import Pill from "./Pill.astro" ---
-
+
+ -

No credit card required. Cancel anytime.

+

No credit card required. Cancel anytime.

diff --git a/src/pages/db/_components/Pill.astro b/src/pages/db/_components/Pill.astro new file mode 100644 index 000000000..22121d0fc --- /dev/null +++ b/src/pages/db/_components/Pill.astro @@ -0,0 +1,45 @@ +--- +type Props = { + title: string + subtitle?: string + class?: string +} + +const { title, subtitle, class: className } = Astro.props +--- + + + +