@moises.ai/design-system 3.9.15 → 3.9.16
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/package.json
CHANGED
|
@@ -27,23 +27,25 @@ const withFlexContainer = (Story) => (
|
|
|
27
27
|
|
|
28
28
|
export const FeatureAnnouncement = {
|
|
29
29
|
render: (args) => (
|
|
30
|
-
<
|
|
31
|
-
<
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
30
|
+
<Flex justify="center" align="center" style={{ padding: '40px', marginTop: '100px' }}>
|
|
31
|
+
<BannerAnnouncement {...args}>
|
|
32
|
+
<Flex direction="column" gap="2">
|
|
33
|
+
<Heading size="3" weight="bold">
|
|
34
|
+
Moises AI Studio
|
|
35
|
+
</Heading>
|
|
36
|
+
<Text size="2">
|
|
37
|
+
Step into the future of music creation. Record, separate, generate,
|
|
38
|
+
convert voice, mix, and master with our all-in-one essential AI tool
|
|
39
|
+
for musicians.
|
|
40
|
+
</Text>
|
|
41
|
+
</Flex>
|
|
42
|
+
</BannerAnnouncement>
|
|
43
|
+
</Flex>
|
|
42
44
|
),
|
|
43
45
|
args: {
|
|
44
46
|
badge: { label: 'New', color: 'green' },
|
|
45
47
|
image:
|
|
46
|
-
'https://storage.googleapis.com/moises-cms/
|
|
48
|
+
'https://storage.googleapis.com/moises-cms/image_3x_f0971a1e8e/image_3x_f0971a1e8e.png',
|
|
47
49
|
link: 'https://www.google.com',
|
|
48
50
|
buttonText: 'Learn More',
|
|
49
51
|
buttonColor: 'gray',
|
|
@@ -92,21 +94,23 @@ export const DayOne = {
|
|
|
92
94
|
}, [])
|
|
93
95
|
|
|
94
96
|
return (
|
|
95
|
-
<
|
|
96
|
-
<
|
|
97
|
-
<
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
97
|
+
<Flex justify="center" align="center" style={{ padding: '40px', marginTop: '100px' }}>
|
|
98
|
+
<BannerAnnouncement {...args}>
|
|
99
|
+
<Flex direction="column" gap="3">
|
|
100
|
+
<Text size="2">Up to 30% off any individual plan for the next:</Text>
|
|
101
|
+
<Countdown
|
|
102
|
+
show={true}
|
|
103
|
+
days={timeLeft.days}
|
|
104
|
+
hours={timeLeft.hours}
|
|
105
|
+
minutes={timeLeft.minutes}
|
|
106
|
+
seconds={timeLeft.seconds}
|
|
107
|
+
theme="default"
|
|
108
|
+
variant="lg"
|
|
109
|
+
showDays={false}
|
|
110
|
+
/>
|
|
111
|
+
</Flex>
|
|
112
|
+
</BannerAnnouncement>
|
|
113
|
+
</Flex>
|
|
110
114
|
)
|
|
111
115
|
},
|
|
112
116
|
args: {
|