@webflow/webflow-cli 1.8.19 → 1.8.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/cloud-scaffolds/astro/src/layouts/Layout.astro +1 -1
- package/dist/cloud-scaffolds/astro/src/pages/index.astro +14 -2
- package/dist/cloud-scaffolds/nextjs/src/app/page.tsx +9 -2
- package/dist/index.js +106 -94
- package/dist/index.js.map +1 -0
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -13,7 +13,7 @@ import "../../devlink/global.css"; // Webflow Styles
|
|
|
13
13
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
14
14
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet">
|
|
15
15
|
<meta name="generator" content={Astro.generator} />
|
|
16
|
-
<title>Astro
|
|
16
|
+
<title>Webflow Cloud - Astro Starter</title>
|
|
17
17
|
</head>
|
|
18
18
|
<body>
|
|
19
19
|
<DevLinkProvider client:load>
|
|
@@ -27,11 +27,11 @@ import { Section, Container, Block, Link } from '../../devlink/_Builtin/Basic';
|
|
|
27
27
|
>
|
|
28
28
|
<h1 class="margin-bottom-24px">Welcome to Webflow Cloud</h1>
|
|
29
29
|
<p class="margin-bottom-24px">This is a simple test using Basic components with enhanced styling.</p>
|
|
30
|
-
<div>
|
|
30
|
+
<div style={{marginTop: '12px'}}>
|
|
31
31
|
<Link
|
|
32
32
|
button={true}
|
|
33
33
|
options={{
|
|
34
|
-
href: "
|
|
34
|
+
href: "https://developers.webflow.com/webflow-cloud/getting-started"
|
|
35
35
|
}}
|
|
36
36
|
className="button-primary"
|
|
37
37
|
>
|
|
@@ -52,4 +52,16 @@ import { Section, Container, Block, Link } from '../../devlink/_Builtin/Basic';
|
|
|
52
52
|
-webkit-text-fill-color: transparent;
|
|
53
53
|
background-clip: text;
|
|
54
54
|
}
|
|
55
|
+
|
|
56
|
+
.button-primary {
|
|
57
|
+
border-radius: 4px;
|
|
58
|
+
background: #146ef5;
|
|
59
|
+
color: #ffffff;
|
|
60
|
+
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.25), inset 0px 29px 23px -16px rgba(255, 255, 255, 0.04), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.2);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.button-primary:hover {
|
|
64
|
+
background: #2c80fd;
|
|
65
|
+
color: #ffffff;
|
|
66
|
+
}
|
|
55
67
|
</style>
|
|
@@ -39,13 +39,20 @@ export default function Home() {
|
|
|
39
39
|
<Block tag="p" className="margin-bottom-24px">
|
|
40
40
|
This is a simple test using Basic components with enhanced styling.
|
|
41
41
|
</Block>
|
|
42
|
-
<div>
|
|
42
|
+
<div style={{ marginTop: "12px" }}>
|
|
43
43
|
<Link
|
|
44
44
|
button={true}
|
|
45
45
|
options={{
|
|
46
|
-
href: "
|
|
46
|
+
href: "https://developers.webflow.com/webflow-cloud/getting-started",
|
|
47
47
|
}}
|
|
48
48
|
className="button-primary"
|
|
49
|
+
style={{
|
|
50
|
+
borderRadius: "4px",
|
|
51
|
+
background: "#146ef5",
|
|
52
|
+
color: "#ffffff",
|
|
53
|
+
boxShadow:
|
|
54
|
+
"0px 0.5px 1px rgba(0, 0, 0, 0.25), inset 0px 29px 23px -16px rgba(255, 255, 255, 0.04), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.2)",
|
|
55
|
+
}}
|
|
49
56
|
>
|
|
50
57
|
Get Started
|
|
51
58
|
</Link>
|