diff --git a/landing/src/components/CTA.astro b/landing/src/components/CTA.astro index 79e29b65c..dc05f331a 100644 --- a/landing/src/components/CTA.astro +++ b/landing/src/components/CTA.astro @@ -6,6 +6,8 @@ import { IconBox } from "@/components/ui/iconBox"; const title = Astro.props.title; const buttonText = Astro.props.buttonText; const url = Astro.props.url; +const buttonText2 = Astro.props.buttonText2; +const url2 = Astro.props.url2; ---
@@ -13,15 +15,35 @@ const url = Astro.props.url;

{title}

- +
+ + { + buttonText2 && ( + + ) + } +
diff --git a/landing/src/components/DebugCasesSection.astro b/landing/src/components/DebugCasesSection.astro index c2498ce77..7501e28c0 100644 --- a/landing/src/components/DebugCasesSection.astro +++ b/landing/src/components/DebugCasesSection.astro @@ -61,14 +61,11 @@ const debugCases = [ title="Watch full video of this case" buttonText="Go to video" url="https://www.youtube.com/watch?v=mTYxjXdMoNs" - >{ - ( - - ) - } + > + diff --git a/landing/src/components/RoadmapSection.astro b/landing/src/components/RoadmapSection.astro index f6ced0a39..e65ccf0d2 100644 --- a/landing/src/components/RoadmapSection.astro +++ b/landing/src/components/RoadmapSection.astro @@ -2,6 +2,7 @@ import ContentWrapper from "../components/ContentWrapper.tsx"; import { Accordion } from "@/components/ui/AccordionWrapper"; import CTA from "@/components/CTA.astro"; +import { Lightbulb } from "lucide-react"; const accordionData = [ { @@ -63,16 +64,15 @@ const accordionData = [ - {"github diff --git a/landing/src/components/ui/button.tsx b/landing/src/components/ui/button.tsx index aece51cd1..efaa3e0f3 100644 --- a/landing/src/components/ui/button.tsx +++ b/landing/src/components/ui/button.tsx @@ -20,6 +20,7 @@ const buttonVariants = cva( size: { default: "max-sm:w-full px-6 py-3 md:py-3", sm: "max-sm:w-full px-5 py-3 md:py-3.5", + wfull: "px-5 py-2 md:py-2.5 w-full px-6", footer: "max-sm:w-full px-3 py-2 max-md:py-3 md:py-2.5", xs: "max-sm:w-[calc(100%-50px)] px-3 py-2 md:py-2.5", },