@webflow/webflow-cli 1.8.20 → 1.8.22
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/nextjs/src/app/page.tsx +20 -20
- package/dist/index.js +106 -95
- package/dist/index.js.map +1 -0
- package/dist/templates/astro/astro.config.mjs.template +11 -9
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
"use client";
|
|
2
2
|
|
|
3
|
-
import {Section, Block, Link} from
|
|
3
|
+
import { Section, Block, Link } from "@/devlink/_Builtin";
|
|
4
4
|
|
|
5
5
|
export default function Home() {
|
|
6
6
|
return (
|
|
7
7
|
<Section
|
|
8
8
|
tag="section"
|
|
9
9
|
style={{
|
|
10
|
-
minHeight:
|
|
11
|
-
display:
|
|
12
|
-
alignItems:
|
|
13
|
-
justifyContent:
|
|
10
|
+
minHeight: "100vh",
|
|
11
|
+
display: "flex",
|
|
12
|
+
alignItems: "center",
|
|
13
|
+
justifyContent: "center",
|
|
14
14
|
}}
|
|
15
15
|
>
|
|
16
16
|
<Block tag="div" className="container">
|
|
@@ -18,20 +18,20 @@ export default function Home() {
|
|
|
18
18
|
tag="div"
|
|
19
19
|
className="hero-split"
|
|
20
20
|
style={{
|
|
21
|
-
textAlign:
|
|
22
|
-
maxWidth:
|
|
23
|
-
margin:
|
|
21
|
+
textAlign: "center",
|
|
22
|
+
maxWidth: "600px",
|
|
23
|
+
margin: "0 auto",
|
|
24
24
|
}}
|
|
25
25
|
>
|
|
26
26
|
<h1
|
|
27
27
|
className="margin-bottom-24px"
|
|
28
28
|
style={{
|
|
29
|
-
fontSize:
|
|
29
|
+
fontSize: "2.5rem",
|
|
30
30
|
fontWeight: 700,
|
|
31
|
-
background:
|
|
32
|
-
WebkitBackgroundClip:
|
|
33
|
-
WebkitTextFillColor:
|
|
34
|
-
backgroundClip:
|
|
31
|
+
background: "linear-gradient(83.21deg, #3245ff 0%, #bc52ee 100%)",
|
|
32
|
+
WebkitBackgroundClip: "text",
|
|
33
|
+
WebkitTextFillColor: "transparent",
|
|
34
|
+
backgroundClip: "text",
|
|
35
35
|
}}
|
|
36
36
|
>
|
|
37
37
|
Welcome to Webflow Cloud
|
|
@@ -39,19 +39,19 @@ 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 style={{marginTop:
|
|
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
49
|
style={{
|
|
50
|
-
borderRadius:
|
|
51
|
-
background:
|
|
52
|
-
color:
|
|
50
|
+
borderRadius: "4px",
|
|
51
|
+
background: "#146ef5",
|
|
52
|
+
color: "#ffffff",
|
|
53
53
|
boxShadow:
|
|
54
|
-
|
|
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
55
|
}}
|
|
56
56
|
>
|
|
57
57
|
Get Started
|