You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description
Checks:
- show
- display
- visibility
- opacity
- rel attribute
## Steps for reproduction
1. click button
2. expect xyz
## Code Review
- [ ] hi @kof, I need you to do
- conceptual review (architecture, feature-correctness)
- detailed review (read every line)
- test it on preview
## Before requesting a review
- [ ] made a self-review
- [ ] added inline comments where things may be not obvious (the "why",
not "what")
## Before merging
- [ ] tested locally and on preview environment (preview dev login:
0000)
- [ ] updated [test
cases](https://github.com/webstudio-is/webstudio/blob/main/apps/builder/docs/test-cases.md)
document
- [ ] added tests
- [ ] if any new env variables are added, added them to `.env` file
constbadgeFeature='No "Built with Webstudio" badge';
286
291
// Badge should be rendered on free sites on every page.
287
292
features.set(badgeFeature,{
288
-
info: "Adding the badge to your homepage helps us offer a free version of the service. Please open the Components panel by clicking the “+” icon on the left, and add the “Built with Webstudio” component to your page. Feel free to adjust the badge's style to match your design - after all, it's just a link, and you can place it wherever you like.",
293
+
info: (
294
+
<Text>
295
+
Adding the badge to your "home" page helps us offer a free version of
296
+
the service. Please open the Components panel by clicking the “+” icon
297
+
on the left, and add the “Built with Webstudio” component to your
298
+
page.
299
+
<br/>
300
+
- Feel free to adjust the badge's style to match your design - after
301
+
all, it's just a link, and you can place it wherever you like.
302
+
<br/>
303
+
- Please don’t add that badge to every page, because search engines
304
+
will view it negatively.
305
+
<br/>- Hiding the link in any way is considered a violation of the
306
+
terms.
307
+
</Text>
308
+
),
289
309
});
290
310
// We want to check the badge only on the home page
0 commit comments