Please fill out as many of the following questions as possible so we can help you promptly! If you don’t know how to answer or it does not apply, feel free to remove it or leave it blank.
Builder content link
Builder public api key
ea8c8e416fd64171bc2ef9ac5ac226e6
What are you trying to accomplish
I need to add a link within a box on the website. Couldn’t do it via the visual editor, whevever I try to drag and drog a text box into a box, it doesn’t work. And then I tried to edit in JSX and it doesn’t work either.
Screenshots or video link
Code stack you are integrating Builder with
React
Reproducible code example
export default function MyComponent(props) {
return (
<div class="box-border flex relative flex-col shrink-0 mt-5 h-[200px]">
<a
href="url"
class="box-border flex relative flex-col pt-5 pr-8 mx-auto mt-2.5 w-full h-auto cursor-pointer pointer-events-auto leading-[normal] max-w-[1180px] text-blue-50 text-opacity-60"
>
<p>Privacy Policy</p>
</a>
<a
href="mailto:support@email.com"
class="box-border flex relative flex-col pt-5 pr-8 mx-auto mt-2.5 w-full h-auto cursor-pointer pointer-events-auto leading-[normal] max-w-[1180px] text-blue-50 text-opacity-60"
>
<p>Support</p>
</a>
</div>
);
}