We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bd22a0 commit 05c2651Copy full SHA for 05c2651
src/components/TryNow/Paragraph.tsx
@@ -16,7 +16,6 @@ const Paragraph: React.FC<ParagraphProps> = ({
16
title,
17
content,
18
button,
19
- buttonLink,
20
links,
21
}) => {
22
const contentPoints = content.includes('\n')
@@ -80,7 +79,9 @@ const Paragraph: React.FC<ParagraphProps> = ({
80
79
className="mt-4 bg-blue-600 text-white font-bold py-2 px-6 rounded-full shadow-lg hover:bg-blue-700 transition"
81
whileHover="hover"
82
variants={paragraphAnimations.button}
83
- onClick={() => window.open(buttonLink, '_blank')}
+ onClick={() =>
+ window.open('https://musicblocks.sugarlabs.org/', '_blank')
84
+ }
85
>
86
{button}
87
</motion.button>
0 commit comments