blocks-dusted 0.1.11 → 0.1.13
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 +5 -2
- package/src/cli.js +39 -3
- package/src/commands/shop.js +59 -0
- package/src/commands/warehouse.js +73 -0
- package/src/installers/patchRenderBlocks.js +1 -1
- package/src/registry/validateTemplateManifest.js +2 -1
- package/templates/blocks/BannerDD790432/Component.tsx +63 -0
- package/templates/blocks/BannerDD790432/config.ts +54 -0
- package/templates/blocks/BannerDD790432/manifest.json +80 -0
- package/templates/blocks/Button47/Component.tsx +124 -0
- package/templates/blocks/Button47/config.ts +75 -0
- package/templates/blocks/Button47/link.ts +22 -0
- package/templates/blocks/Button47/manifest.json +105 -0
- package/templates/blocks/Button47/styles.module.scss +75 -0
- package/templates/blocks/DD-Accordion/Component.tsx +55 -36
- package/templates/blocks/DD-Accordion/config.ts +71 -59
- package/templates/blocks/DD-AnimText/Component.tsx +50 -32
- package/templates/blocks/DD-AnimText/config.ts +296 -295
- package/templates/blocks/DD-AsideNav/Component.tsx +323 -319
- package/templates/blocks/DD-Banner/Component.tsx +54 -51
- package/templates/blocks/DD-BookCall/Component.tsx +10 -9
- package/templates/blocks/DD-ButtonPop/Component.tsx +118 -117
- package/templates/blocks/DD-Card/Component.tsx +4 -4
- package/templates/blocks/DD-CardTemplate01/Component.tsx +5 -5
- package/templates/blocks/DD-CardsWithVariantV3/Component.tsx +472 -0
- package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/index.tsx +203 -0
- package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/styles.ts +87 -0
- package/templates/blocks/DD-CardsWithVariantV3/ElectricBorder/useInjectStyle.ts +39 -0
- package/templates/blocks/DD-CardsWithVariantV3/config.ts +326 -0
- package/templates/blocks/DD-CardsWithVariantV3/manifest.json +110 -0
- package/templates/blocks/DD-Carousel-A/Component.tsx +251 -249
- package/templates/blocks/DD-Carousel-B/Component.tsx +405 -403
- package/templates/blocks/DD-Chip/Component.tsx +14 -14
- package/templates/blocks/DD-ComparisonTable/Component.tsx +255 -256
- package/templates/blocks/DD-Contact/Component.tsx +433 -434
- package/templates/blocks/DD-Counter/Component.tsx +18 -13
- package/templates/blocks/DD-DeliCard/Component.tsx +303 -0
- package/templates/blocks/DD-DeliCard/config.ts +186 -0
- package/templates/blocks/DD-DeliCard/manifest.json +94 -0
- package/templates/blocks/DD-FeatCat/Component.tsx +302 -302
- package/templates/blocks/DD-FeatProd/CircularGallery.tsx +1179 -0
- package/templates/blocks/DD-FeatProd/Component.tsx +484 -0
- package/templates/blocks/DD-FeatProd/config.ts +173 -0
- package/templates/blocks/DD-FeatProd/manifest.json +93 -0
- package/templates/blocks/DD-FeatServ/Component.tsx +607 -0
- package/templates/blocks/DD-FeatServ/config.ts +213 -0
- package/templates/blocks/DD-FeatServ/manifest.json +113 -0
- package/templates/blocks/DD-FeatStrip/Component.tsx +584 -585
- package/templates/blocks/DD-FluidBtn/ButtonsEyeCatching.tsx +627 -628
- package/templates/blocks/DD-FluidBtn/Component.tsx +46 -43
- package/templates/blocks/DD-GooeyInfo/Component.tsx +150 -149
- package/templates/blocks/DD-GooeyInfo/config.ts +136 -135
- package/templates/blocks/DD-Hero/Component.tsx +16 -40
- package/templates/blocks/DD-HeroPlas/Component.tsx +50 -0
- package/templates/blocks/DD-HeroPlas/ThreeScene.tsx +109 -0
- package/templates/blocks/DD-HeroPlas/config.ts +33 -0
- package/templates/blocks/DD-HeroPlas/manifest.json +88 -0
- package/templates/blocks/DD-HorizontalScroll/Component.tsx +4 -5
- package/templates/blocks/DD-Icon/Component.tsx +46 -81
- package/templates/blocks/DD-IconButton/Component.tsx +13 -20
- package/templates/blocks/DD-IdTag/Component.tsx +22 -21
- package/templates/blocks/DD-IframeMedia/Component.tsx +14 -10
- package/templates/blocks/DD-LineAnim/Component.tsx +42 -36
- package/templates/blocks/DD-LogoMarq/Component.tsx +38 -48
- package/templates/blocks/DD-Lottie/Component.tsx +11 -3
- package/templates/blocks/DD-MasonaryMedia/Component.tsx +544 -547
- package/templates/blocks/DD-MasonaryMedia/config.ts +389 -389
- package/templates/blocks/DD-Masonry/Component.tsx +654 -644
- package/templates/blocks/DD-Masonry/config.ts +475 -475
- package/templates/blocks/DD-MaterialSwatches/Component.tsx +85 -0
- package/templates/blocks/DD-MaterialSwatches/config.ts +232 -0
- package/templates/blocks/DD-MaterialSwatches/manifest.json +84 -0
- package/templates/blocks/DD-MaterialSwatches/material.ts +107 -0
- package/templates/blocks/DD-NineCanvas/Component.tsx +129 -0
- package/templates/blocks/DD-NineCanvas/RenderBlocks.tsx +244 -0
- package/templates/blocks/DD-NineCanvas/allowedCanvasBlocks.ts +6 -0
- package/templates/blocks/DD-NineCanvas/blockComponents.tsx +8 -0
- package/templates/blocks/DD-NineCanvas/canvas/CanvasGrid.tsx +316 -0
- package/templates/blocks/DD-NineCanvas/canvas/RadialNav.tsx +432 -0
- package/templates/blocks/DD-NineCanvas/canvas/canvas-panels.css +889 -0
- package/templates/blocks/DD-NineCanvas/canvas/icons/custom-icons.tsx +364 -0
- package/templates/blocks/DD-NineCanvas/config.ts +61 -0
- package/templates/blocks/DD-NineCanvas/manifest.json +165 -0
- package/templates/blocks/DD-NineCanvas/styles.scss +152 -0
- package/templates/blocks/DD-NineCanvas/tooltip/get-strict-context.tsx +26 -0
- package/templates/blocks/DD-NineCanvas/tooltip/primitives.tsx +178 -0
- package/templates/blocks/DD-NineCanvas/tooltip/tooltip.tsx +71 -0
- package/templates/blocks/DD-NineCanvas/tooltip/use-controlled-state.tsx +33 -0
- package/templates/blocks/DD-NineCanvas/utilities/FadeOnScroll.tsx +68 -0
- package/templates/blocks/DD-NineCanvas/utilities/ParallaxWrapper.tsx +157 -0
- package/templates/blocks/DD-NineCanvas/utilities/renderCustomCSS.ts +5 -0
- package/templates/blocks/DD-NineCanvas/utilities/webglCleanup.ts +27 -0
- package/templates/blocks/DD-PayloadAIAssistant/Component.tsx +78 -0
- package/templates/blocks/DD-PayloadAIAssistant/DustedBot.tsx +590 -0
- package/templates/blocks/DD-PayloadAIAssistant/config.ts +37 -0
- package/templates/blocks/DD-PayloadAIAssistant/demo.css +125 -0
- package/templates/blocks/DD-PayloadAIAssistant/manifest.json +93 -0
- package/templates/blocks/DD-PayloadAIAssistant/source-defaults.ts +17 -0
- package/templates/blocks/DD-PayloadAIAssistant/styles.ts +306 -0
- package/templates/blocks/DD-Pricing/Component.tsx +368 -372
- package/templates/blocks/DD-Pricing/config.ts +215 -215
- package/templates/blocks/DD-Process/Component.tsx +147 -149
- package/templates/blocks/DD-Progress/Component.tsx +156 -141
- package/templates/blocks/DD-ProjHeader/Component.tsx +93 -91
- package/templates/blocks/DD-ProjSlider/Component.tsx +1 -1
- package/templates/blocks/DD-ProjSlider/config.ts +2 -2
- package/templates/blocks/DD-Section/Component.tsx +265 -266
- package/templates/blocks/DD-Separator/Component.tsx +66 -66
- package/templates/blocks/DD-Services/Component.tsx +176 -176
- package/templates/blocks/DD-ShowcaseGrid/Component.tsx +306 -307
- package/templates/blocks/DD-Slider-A/Component.tsx +237 -237
- package/templates/blocks/DD-StackCards/Component.tsx +474 -473
- package/templates/blocks/DD-Team/Component.tsx +247 -247
- package/templates/blocks/DD-TeamCards/Component.tsx +251 -251
- package/templates/blocks/DD-TechStack/Component.tsx +161 -168
- package/templates/blocks/DD-TestMarq/Component.tsx +158 -132
- package/templates/blocks/DD-Testim/Component.tsx +247 -247
- package/templates/blocks/DD-Testim2/Component.tsx +265 -256
- package/templates/blocks/DD-Testimonials/Component.tsx +139 -147
- package/templates/blocks/DD-TextMarq/Component.tsx +157 -157
- package/templates/blocks/DD-Thanks/Component.tsx +501 -500
- package/templates/blocks/DD-Work/Component.tsx +315 -315
- package/templates/blocks/DD-Work-B/Component.tsx +294 -294
- package/templates/blocks/DDHG-CTASection2/Component.tsx +183 -184
- package/templates/blocks/DDHG-HighlightArc/Component.tsx +246 -243
- package/templates/blocks/DDHG-LogoMarquee/Component.tsx +180 -93
- package/templates/blocks/DDHG-LogoMarquee/config.ts +154 -66
- package/templates/blocks/DDHG-NavCodeGrid/Component.tsx +225 -213
- package/templates/blocks/DDHG-ProcessSec/Component.tsx +38 -39
- package/templates/blocks/DDHG-ServiceDetails/Component.tsx +11 -11
- package/templates/blocks/DDHG-ServiceDetails/ServiceDetailCard.tsx +30 -47
- package/templates/blocks/DDHG-ServiceHero/Component.tsx +10 -10
- package/templates/blocks/DDHG-ServiceOverview/Component.tsx +23 -23
- package/templates/blocks/DDHG-StatsFAQ/Component.tsx +40 -40
- package/templates/blocks/DDHG-TeamCards/Component.tsx +140 -131
- package/templates/blocks/Form/Checkbox/index.tsx +45 -0
- package/templates/blocks/Form/Component.tsx +163 -0
- package/templates/blocks/Form/Country/index.tsx +65 -0
- package/templates/blocks/Form/Country/options.ts +982 -0
- package/templates/blocks/Form/Email/index.tsx +38 -0
- package/templates/blocks/Form/Error/index.tsx +15 -0
- package/templates/blocks/Form/Message/index.tsx +13 -0
- package/templates/blocks/Form/Number/index.tsx +36 -0
- package/templates/blocks/Form/Select/index.tsx +63 -0
- package/templates/blocks/Form/State/index.tsx +64 -0
- package/templates/blocks/Form/State/options.ts +52 -0
- package/templates/blocks/Form/Text/index.tsx +32 -0
- package/templates/blocks/Form/Textarea/index.tsx +40 -0
- package/templates/blocks/Form/Width/index.tsx +13 -0
- package/templates/blocks/Form/config.ts +51 -0
- package/templates/blocks/Form/fields.tsx +21 -0
- package/templates/blocks/Form/manifest.json +168 -0
- package/templates/blocks/MediaBlock/Component.tsx +67 -0
- package/templates/blocks/MediaBlock/config.ts +14 -0
- package/templates/blocks/MediaBlock/manifest.json +92 -0
- package/templates/blocks/TransitionsDustedShowcase/Component.tsx +9 -0
- package/templates/blocks/TransitionsDustedShowcase/config.ts +13 -0
- package/templates/blocks/TransitionsDustedShowcase/manifest.json +80 -0
- package/templates/blocks/rawHtml/Component.tsx +25 -0
- package/templates/blocks/rawHtml/config.ts +56 -0
- package/templates/blocks/rawHtml/manifest.json +80 -0
|
@@ -1,266 +1,265 @@
|
|
|
1
|
-
'use client'
|
|
2
|
-
import React from 'react'
|
|
3
|
-
import Link from 'next/link'
|
|
4
|
-
import Image from 'next/image'
|
|
5
|
-
import { ArrowUpRight, CheckCheck } from 'lucide-react'
|
|
6
|
-
import { motion, type Variants } from 'framer-motion'
|
|
7
|
-
import * as LucideIcons from 'lucide-react'
|
|
8
|
-
export type DDSectionProps = Record<string, any>
|
|
9
|
-
type ServiceItem = {
|
|
10
|
-
id?: string | null
|
|
11
|
-
iconName?: string | null
|
|
12
|
-
title?: string | null
|
|
13
|
-
description?: string | null
|
|
14
|
-
}
|
|
15
|
-
type ButtonItem = { href?: string | null; class?: string | null; label?: string | null }
|
|
16
|
-
|
|
17
|
-
function isLocalImageSrc(src?: string | null): src is string {
|
|
18
|
-
return typeof src === 'string' && src.startsWith('/api/media/file/')
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
function SectionImagePlaceholder() {
|
|
22
|
-
return (
|
|
23
|
-
<svg
|
|
24
|
-
aria-hidden="true"
|
|
25
|
-
className="h-full w-full"
|
|
26
|
-
viewBox="0 0 900 700"
|
|
27
|
-
preserveAspectRatio="none"
|
|
28
|
-
>
|
|
29
|
-
<defs>
|
|
30
|
-
<linearGradient id="dd-section-placeholder" x1="0" y1="0" x2="1" y2="1">
|
|
31
|
-
<stop offset="0%" stopColor="#111827" />
|
|
32
|
-
<stop offset="50%" stopColor="#251644" />
|
|
33
|
-
<stop offset="100%" stopColor="#09090b" />
|
|
34
|
-
</linearGradient>
|
|
35
|
-
<pattern id="dd-section-grid" width="72" height="72" patternUnits="userSpaceOnUse">
|
|
36
|
-
<path d="M 72 0 L 0 0 0 72" fill="none" stroke="#ffffff" strokeOpacity="0.07" />
|
|
37
|
-
</pattern>
|
|
38
|
-
</defs>
|
|
39
|
-
<rect width="900" height="700" fill="url(#dd-section-placeholder)" />
|
|
40
|
-
<rect width="900" height="700" fill="url(#dd-section-grid)" />
|
|
41
|
-
<rect x="155" y="150" width="590" height="360" rx="32" fill="#ffffff" fillOpacity="0.08" />
|
|
42
|
-
<rect x="210" y="215" width="270" height="28" rx="14" fill="#ffffff" fillOpacity="0.18" />
|
|
43
|
-
<rect x="210" y="275" width="430" height="22" rx="11" fill="#ffffff" fillOpacity="0.12" />
|
|
44
|
-
<rect x="210" y="325" width="360" height="22" rx="11" fill="#ffffff" fillOpacity="0.1" />
|
|
45
|
-
<rect x="210" y="410" width="150" height="46" rx="23" fill="#a3e635" fillOpacity="0.16" />
|
|
46
|
-
</svg>
|
|
47
|
-
)
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
const containerVariants: Variants = {
|
|
51
|
-
hidden: {},
|
|
52
|
-
show: { transition: { staggerChildren: 0.1, delayChildren: 0.05 } },
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
const itemVariants: Variants = {
|
|
56
|
-
hidden: { opacity: 0, y: 20 },
|
|
57
|
-
show: { opacity: 1, y: 0, transition: { duration: 0.45, ease: 'easeOut' } },
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
function DynamicIcon({
|
|
61
|
-
name,
|
|
62
|
-
...props
|
|
63
|
-
}: { name?: string | null } & Omit<LucideIcons.LucideProps, 'name'>) {
|
|
64
|
-
if (!name) return null
|
|
65
|
-
const Icon = (LucideIcons as unknown as Record<string, React.FC<LucideIcons.LucideProps>>)[name]
|
|
66
|
-
if (!Icon) return null
|
|
67
|
-
return <Icon {...props} />
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export const DDSection: React.FC<DDSectionProps> = ({
|
|
71
|
-
eyebrow,
|
|
72
|
-
headlineMain,
|
|
73
|
-
headlineAccent,
|
|
74
|
-
description,
|
|
75
|
-
ctaLabel,
|
|
76
|
-
ctaHref,
|
|
77
|
-
services,
|
|
78
|
-
image,
|
|
79
|
-
imageFallbackUrl,
|
|
80
|
-
imageAlt,
|
|
81
|
-
badgeTitle,
|
|
82
|
-
badgeSubtitle,
|
|
83
|
-
showBadge,
|
|
84
|
-
sectionId,
|
|
85
|
-
customCSS,
|
|
86
|
-
showButtons = true,
|
|
87
|
-
buttons = [
|
|
88
|
-
{ variant: 'v1', icon: 'Goal', label: 'Choose Lane' },
|
|
89
|
-
{ variant: 'v1', icon: 'Feather', label: 'How it works' },
|
|
90
|
-
],
|
|
91
|
-
}) => {
|
|
92
|
-
const serviceItems = (services ?? []) as ServiceItem[]
|
|
93
|
-
const buttonItems = buttons as ButtonItem[]
|
|
94
|
-
const imgSrc =
|
|
95
|
-
image && typeof image === 'object' && 'url' in image && image.url
|
|
96
|
-
? image.url
|
|
97
|
-
: (imageFallbackUrl ?? '')
|
|
98
|
-
const safeImgSrc = isLocalImageSrc(imgSrc) ? imgSrc : null
|
|
99
|
-
|
|
100
|
-
return (
|
|
101
|
-
<>
|
|
102
|
-
{customCSS && <style dangerouslySetInnerHTML={{ __html: customCSS }} />}
|
|
103
|
-
|
|
104
|
-
<div id={sectionId ?? 'studio-section'} className="py-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
{
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
{
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
{
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
{
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
}
|
|
1
|
+
'use client'
|
|
2
|
+
import React from 'react'
|
|
3
|
+
import Link from 'next/link'
|
|
4
|
+
import Image from 'next/image'
|
|
5
|
+
import { ArrowUpRight, CheckCheck } from 'lucide-react'
|
|
6
|
+
import { motion, type Variants } from 'framer-motion'
|
|
7
|
+
import * as LucideIcons from 'lucide-react'
|
|
8
|
+
export type DDSectionProps = Record<string, any>
|
|
9
|
+
type ServiceItem = {
|
|
10
|
+
id?: string | null
|
|
11
|
+
iconName?: string | null
|
|
12
|
+
title?: string | null
|
|
13
|
+
description?: string | null
|
|
14
|
+
}
|
|
15
|
+
type ButtonItem = { href?: string | null; class?: string | null; label?: string | null }
|
|
16
|
+
|
|
17
|
+
function isLocalImageSrc(src?: string | null): src is string {
|
|
18
|
+
return typeof src === 'string' && src.startsWith('/api/media/file/')
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function SectionImagePlaceholder() {
|
|
22
|
+
return (
|
|
23
|
+
<svg
|
|
24
|
+
aria-hidden="true"
|
|
25
|
+
className="h-full w-full"
|
|
26
|
+
viewBox="0 0 900 700"
|
|
27
|
+
preserveAspectRatio="none"
|
|
28
|
+
>
|
|
29
|
+
<defs>
|
|
30
|
+
<linearGradient id="dd-section-placeholder" x1="0" y1="0" x2="1" y2="1">
|
|
31
|
+
<stop offset="0%" stopColor="#111827" />
|
|
32
|
+
<stop offset="50%" stopColor="#251644" />
|
|
33
|
+
<stop offset="100%" stopColor="#09090b" />
|
|
34
|
+
</linearGradient>
|
|
35
|
+
<pattern id="dd-section-grid" width="72" height="72" patternUnits="userSpaceOnUse">
|
|
36
|
+
<path d="M 72 0 L 0 0 0 72" fill="none" stroke="#ffffff" strokeOpacity="0.07" />
|
|
37
|
+
</pattern>
|
|
38
|
+
</defs>
|
|
39
|
+
<rect width="900" height="700" fill="url(#dd-section-placeholder)" />
|
|
40
|
+
<rect width="900" height="700" fill="url(#dd-section-grid)" />
|
|
41
|
+
<rect x="155" y="150" width="590" height="360" rx="32" fill="#ffffff" fillOpacity="0.08" />
|
|
42
|
+
<rect x="210" y="215" width="270" height="28" rx="14" fill="#ffffff" fillOpacity="0.18" />
|
|
43
|
+
<rect x="210" y="275" width="430" height="22" rx="11" fill="#ffffff" fillOpacity="0.12" />
|
|
44
|
+
<rect x="210" y="325" width="360" height="22" rx="11" fill="#ffffff" fillOpacity="0.1" />
|
|
45
|
+
<rect x="210" y="410" width="150" height="46" rx="23" fill="#a3e635" fillOpacity="0.16" />
|
|
46
|
+
</svg>
|
|
47
|
+
)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const containerVariants: Variants = {
|
|
51
|
+
hidden: {},
|
|
52
|
+
show: { transition: { staggerChildren: 0.1, delayChildren: 0.05 } },
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const itemVariants: Variants = {
|
|
56
|
+
hidden: { opacity: 0, y: 20 },
|
|
57
|
+
show: { opacity: 1, y: 0, transition: { duration: 0.45, ease: 'easeOut' } },
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function DynamicIcon({
|
|
61
|
+
name,
|
|
62
|
+
...props
|
|
63
|
+
}: { name?: string | null } & Omit<LucideIcons.LucideProps, 'name'>) {
|
|
64
|
+
if (!name) return null
|
|
65
|
+
const Icon = (LucideIcons as unknown as Record<string, React.FC<LucideIcons.LucideProps>>)[name]
|
|
66
|
+
if (!Icon) return null
|
|
67
|
+
return <Icon {...props} />
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export const DDSection: React.FC<DDSectionProps> = ({
|
|
71
|
+
eyebrow,
|
|
72
|
+
headlineMain,
|
|
73
|
+
headlineAccent,
|
|
74
|
+
description,
|
|
75
|
+
ctaLabel,
|
|
76
|
+
ctaHref,
|
|
77
|
+
services,
|
|
78
|
+
image,
|
|
79
|
+
imageFallbackUrl,
|
|
80
|
+
imageAlt,
|
|
81
|
+
badgeTitle,
|
|
82
|
+
badgeSubtitle,
|
|
83
|
+
showBadge,
|
|
84
|
+
sectionId,
|
|
85
|
+
customCSS,
|
|
86
|
+
showButtons = true,
|
|
87
|
+
buttons = [
|
|
88
|
+
{ variant: 'v1', icon: 'Goal', label: 'Choose Lane' },
|
|
89
|
+
{ variant: 'v1', icon: 'Feather', label: 'How it works' },
|
|
90
|
+
],
|
|
91
|
+
}) => {
|
|
92
|
+
const serviceItems = (services ?? []) as ServiceItem[]
|
|
93
|
+
const buttonItems = buttons as ButtonItem[]
|
|
94
|
+
const imgSrc =
|
|
95
|
+
image && typeof image === 'object' && 'url' in image && image.url
|
|
96
|
+
? image.url
|
|
97
|
+
: (imageFallbackUrl ?? '')
|
|
98
|
+
const safeImgSrc = isLocalImageSrc(imgSrc) ? imgSrc : null
|
|
99
|
+
|
|
100
|
+
return (
|
|
101
|
+
<>
|
|
102
|
+
{customCSS && <style dangerouslySetInnerHTML={{ __html: customCSS }} />}
|
|
103
|
+
|
|
104
|
+
<div id={sectionId ?? 'studio-section'} className="py-4 overflow-hidden">
|
|
105
|
+
<div className="max-w-6xl lg:max-w-7xl mx-auto px-4 md:px-6">
|
|
106
|
+
<div className="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center">
|
|
107
|
+
{/* Left Content */}
|
|
108
|
+
<motion.div
|
|
109
|
+
variants={containerVariants}
|
|
110
|
+
initial="hidden"
|
|
111
|
+
whileInView="show"
|
|
112
|
+
viewport={{ once: false, amount: 0.15 }}
|
|
113
|
+
>
|
|
114
|
+
{eyebrow && (
|
|
115
|
+
<motion.p
|
|
116
|
+
variants={itemVariants}
|
|
117
|
+
className="text-[11.5px] font-semibold text-stone-400 tracking-widest uppercase mb-3 top-caption"
|
|
118
|
+
>
|
|
119
|
+
{eyebrow}
|
|
120
|
+
</motion.p>
|
|
121
|
+
)}
|
|
122
|
+
|
|
123
|
+
<motion.h2
|
|
124
|
+
variants={itemVariants}
|
|
125
|
+
className="text-3d text-4xl md:text-5xl font-bold text-stone-900 dark:text-stone-50 leading-tight mb-6"
|
|
126
|
+
>
|
|
127
|
+
{headlineMain}
|
|
128
|
+
<br />
|
|
129
|
+
<span className="text-stone-400">{headlineAccent}</span>
|
|
130
|
+
</motion.h2>
|
|
131
|
+
|
|
132
|
+
{description && (
|
|
133
|
+
<motion.p
|
|
134
|
+
variants={itemVariants}
|
|
135
|
+
className="text-stone-700 dark:text-stone-300 text-base leading-relaxed mb-10"
|
|
136
|
+
>
|
|
137
|
+
{description}
|
|
138
|
+
</motion.p>
|
|
139
|
+
)}
|
|
140
|
+
|
|
141
|
+
{serviceItems.length > 0 && (
|
|
142
|
+
<motion.div
|
|
143
|
+
variants={containerVariants}
|
|
144
|
+
className="grid grid-cols-1 sm:grid-cols-2 gap-5 mb-10"
|
|
145
|
+
>
|
|
146
|
+
{serviceItems.map((svc) => (
|
|
147
|
+
<motion.div
|
|
148
|
+
key={svc.id ?? svc.title}
|
|
149
|
+
variants={itemVariants}
|
|
150
|
+
className="flex gap-3"
|
|
151
|
+
>
|
|
152
|
+
<div className="w-8 h-8 flex items-center justify-center rounded-lg bg-stone-200/50 dark:bg-stone-800/50 text-stone-400 shrink-0 mt-0.5 border border-stone-200 dark:border-stone-600 hover:border-lime-500 duration-150">
|
|
153
|
+
<DynamicIcon className="text-stone-400" name={svc.iconName} size={14} />
|
|
154
|
+
</div>
|
|
155
|
+
<div>
|
|
156
|
+
<h3 className="text-sm font-semibold text-stone-800 dark:text-stone-50 mb-1">
|
|
157
|
+
{svc.title}
|
|
158
|
+
</h3>
|
|
159
|
+
<p className="text-sm text-stone-700 dark:text-stone-300 leading-relaxed">
|
|
160
|
+
{svc.description}
|
|
161
|
+
</p>
|
|
162
|
+
</div>
|
|
163
|
+
</motion.div>
|
|
164
|
+
))}
|
|
165
|
+
</motion.div>
|
|
166
|
+
)}
|
|
167
|
+
|
|
168
|
+
{/* {ctaLabel && ctaHref && (
|
|
169
|
+
<motion.div variants={itemVariants}>
|
|
170
|
+
<Link
|
|
171
|
+
href={ctaHref}
|
|
172
|
+
className="inline-flex items-center gap-2 bg-stone-50 text-stone-900 px-6 py-3 rounded-lg text-sm font-semibold hover:bg-stone-100 transition-colors cursor-pointer whitespace-nowrap"
|
|
173
|
+
>
|
|
174
|
+
{ctaLabel}
|
|
175
|
+
<ArrowUpRight size={15} />
|
|
176
|
+
</Link>
|
|
177
|
+
</motion.div>
|
|
178
|
+
)} */}
|
|
179
|
+
|
|
180
|
+
{/* Dusted CTA Buttons */}
|
|
181
|
+
{showButtons && buttonItems.length > 0 && (
|
|
182
|
+
<motion.div
|
|
183
|
+
className="dusted-hero-cta-col flex col-start-2 col-span-2 gap-4"
|
|
184
|
+
variants={itemVariants}
|
|
185
|
+
>
|
|
186
|
+
{buttonItems.map((button, index) => (
|
|
187
|
+
<a
|
|
188
|
+
key={index}
|
|
189
|
+
href={(button as any).href ?? '#'}
|
|
190
|
+
className={
|
|
191
|
+
button.class ??
|
|
192
|
+
'inline-flex items-center gap-1.5 bg-indigo-700 text-stone-50 text-xs font-semibold px-3 py-1.5 rounded-lg hover:bg-indigo-600 group-hover:scale-[1.05] hover:shadow-xl transition-all duration-150 whitespace-nowrap'
|
|
193
|
+
}
|
|
194
|
+
style={{ cornerShape: 'squircle' } as React.CSSProperties}
|
|
195
|
+
>
|
|
196
|
+
{/* TODO: Reconnect ButtonDustedFluid if this project provides it. */}
|
|
197
|
+
{button.label || 'Button'}
|
|
198
|
+
</a>
|
|
199
|
+
))}
|
|
200
|
+
</motion.div>
|
|
201
|
+
)}
|
|
202
|
+
</motion.div>
|
|
203
|
+
|
|
204
|
+
{/* Right Image */}
|
|
205
|
+
{(safeImgSrc || imgSrc) && (
|
|
206
|
+
<motion.div
|
|
207
|
+
className="relative"
|
|
208
|
+
initial={{ opacity: 0, x: 40 }}
|
|
209
|
+
whileInView={{ opacity: 1, x: 0 }}
|
|
210
|
+
viewport={{ once: false, amount: 0.15 }}
|
|
211
|
+
transition={{ duration: 0.6, ease: 'easeOut' }}
|
|
212
|
+
>
|
|
213
|
+
<div
|
|
214
|
+
className="rounded-3xl overflow-hidden w-full h-125 relative shadow-xl"
|
|
215
|
+
style={{ cornerShape: 'squircle' } as React.CSSProperties}
|
|
216
|
+
>
|
|
217
|
+
{safeImgSrc ? (
|
|
218
|
+
<Image
|
|
219
|
+
src={safeImgSrc}
|
|
220
|
+
alt={imageAlt ?? 'DesignsDusted Studio'}
|
|
221
|
+
fill
|
|
222
|
+
sizes="(max-width: 768px) 100vw, 50vw"
|
|
223
|
+
className="object-cover object-top squircle"
|
|
224
|
+
style={{ cornerShape: 'squircle' } as React.CSSProperties}
|
|
225
|
+
/>
|
|
226
|
+
) : (
|
|
227
|
+
<SectionImagePlaceholder />
|
|
228
|
+
)}
|
|
229
|
+
<div
|
|
230
|
+
className="absolute inset-0 bg-linear-to-t from-stone-950/70 via-transparent to-transparent rounded-2xl"
|
|
231
|
+
style={{ cornerShape: 'squircle' } as React.CSSProperties}
|
|
232
|
+
/>
|
|
233
|
+
</div>
|
|
234
|
+
|
|
235
|
+
{showBadge && (
|
|
236
|
+
<div
|
|
237
|
+
className="absolute bottom-6 left-6 right-6 bg-indigo-900/50 shadow-inner backdrop-blur-sm rounded-2xl p-4 border border-indigo-700"
|
|
238
|
+
style={{ cornerShape: 'squircle' } as React.CSSProperties}
|
|
239
|
+
>
|
|
240
|
+
<div className="flex items-center gap-3">
|
|
241
|
+
<div className="w-10 h-10 flex items-center justify-center rounded-lg bg-stone-50 text-stone-900 shrink-0">
|
|
242
|
+
<CheckCheck size={16} />
|
|
243
|
+
</div>
|
|
244
|
+
<div>
|
|
245
|
+
{badgeTitle && (
|
|
246
|
+
<div className="text-sm font-semibold text-stone-50 dark:text-stone-50">
|
|
247
|
+
{badgeTitle}
|
|
248
|
+
</div>
|
|
249
|
+
)}
|
|
250
|
+
{badgeSubtitle && (
|
|
251
|
+
<div className="text-xs text-stone-300">{badgeSubtitle}</div>
|
|
252
|
+
)}
|
|
253
|
+
</div>
|
|
254
|
+
<div className="ml-auto w-2 h-2 rounded-full bg-lime-400 animate-pulse shrink-0" />
|
|
255
|
+
</div>
|
|
256
|
+
</div>
|
|
257
|
+
)}
|
|
258
|
+
</motion.div>
|
|
259
|
+
)}
|
|
260
|
+
</div>
|
|
261
|
+
</div>
|
|
262
|
+
</div>
|
|
263
|
+
</>
|
|
264
|
+
)
|
|
265
|
+
}
|