diff --git a/lawfirm-demos/demo-1/components/DualCTA.tsx b/lawfirm-demos/demo-1/components/DualCTA.tsx new file mode 100644 index 0000000..666d955 --- /dev/null +++ b/lawfirm-demos/demo-1/components/DualCTA.tsx @@ -0,0 +1,66 @@ +'use client'; + +import Link from 'next/link'; +import {motion} from 'framer-motion'; + +export default function DualCTA() { + return ( +
+ + + + +
+ ); +} + +function CTABox({ + title, + text, + href, + linkText, + }: Readonly<{ + title: string; + text: string; + href: string; + linkText: string; +}>) { + return ( + +
+

{title}

+

{text}

+
+
+ + {linkText} + + → + + +
+
+ ); +}