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';
274
279
// Badge should be rendered on free sites on every page.
275
280
features.set(badgeFeature,{
276
-
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.",
281
+
info: (
282
+
<Text>
283
+
Adding the badge to your "home" page helps us offer a free version of
284
+
the service. Please open the Components panel by clicking the “+” icon
285
+
on the left, and add the “Built with Webstudio” component to your
286
+
page.
287
+
<br/>
288
+
- Feel free to adjust the badge's style to match your design - after
289
+
all, it's just a link, and you can place it wherever you like.
290
+
<br/>
291
+
- Please don’t add that badge to every page, because search engines
292
+
will view it negatively.
293
+
<br/>- Hiding the link in any way is considered a violation of the
294
+
terms.
295
+
</Text>
296
+
),
277
297
});
278
298
// We want to check the badge only on the home page
0 commit comments