@kickstartds/ds-agency-premium 1.6.61--canary.40.1501.0 → 1.6.61--canary.40.1507.0
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/dist/{BlogOverviewProps-1cfcf6e8.d.ts → BlogOverviewProps-9f207f1c.d.ts} +1 -1
- package/dist/{BlogPostProps-1cfcf6e8.d.ts → BlogPostProps-6b3cff22.d.ts} +1 -1
- package/dist/{CtaProps-02e33bf1.d.ts → CtaProps-fd5e75dc.d.ts} +6 -1
- package/dist/SectionProps-1cfcf6e8.d.ts +3 -3
- package/dist/{SliderProps-02e33bf1.d.ts → SliderProps-fd5e75dc.d.ts} +1 -1
- package/dist/components/blog-overview/blog-overview.schema.dereffed.json +18 -0
- package/dist/components/blog-overview/index.d.ts +1 -1
- package/dist/components/blog-post/blog-post.schema.dereffed.json +18 -0
- package/dist/components/blog-post/index.d.ts +1 -1
- package/dist/components/cta/cta.css +6 -3
- package/dist/components/cta/cta.schema.dereffed.json +6 -0
- package/dist/components/cta/cta.schema.json +6 -0
- package/dist/components/cta/index.d.ts +1 -1
- package/dist/components/cta/index.js +2 -2
- package/dist/components/image-story/index.d.ts +1 -1
- package/dist/components/index/index.d.ts +3 -3
- package/dist/components/page/index.d.ts +1 -1
- package/dist/components/page/page.schema.dereffed.json +12 -0
- package/dist/components/page-wrapper/tokens.css +1 -1
- package/dist/components/presets.json +22 -12
- package/dist/components/section/section.schema.dereffed.json +12 -0
- package/dist/components/slider/index.d.ts +1 -1
- package/dist/components/slider/slider.schema.dereffed.json +6 -0
- package/dist/components/testimonials/index.d.ts +1 -1
- package/dist/tokens/themes.css +4 -4
- package/dist/tokens/tokens.css +1 -1
- package/dist/tokens/tokens.js +1 -1
- package/package.json +1 -1
- /package/dist/{ImageStoryProps-03ff6d21.d.ts → ImageStoryProps-e853e1e7.d.ts} +0 -0
- /package/dist/{PageProps-1cfcf6e8.d.ts → PageProps-aa29c554.d.ts} +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { SectionProps } from "./SectionProps-1cfcf6e8.js";
|
|
7
7
|
import { BlogTeaserProps } from "./BlogTeaserProps-f5855e93.js";
|
|
8
|
-
import { CtaProps } from "./CtaProps-
|
|
8
|
+
import { CtaProps } from "./CtaProps-fd5e75dc.js";
|
|
9
9
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
10
10
|
/**
|
|
11
11
|
* Collection of sections (with their contents) to render as the blog overview intro
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { BlogHeadProps } from "./BlogHeadProps-c04a5ed8.js";
|
|
7
7
|
import { BlogAsideProps } from "./BlogAsideProps-d9decb7c.js";
|
|
8
8
|
import { SectionProps } from "./SectionProps-1cfcf6e8.js";
|
|
9
|
-
import { CtaProps } from "./CtaProps-
|
|
9
|
+
import { CtaProps } from "./CtaProps-fd5e75dc.js";
|
|
10
10
|
import { SeoProps } from "./SeoProps-f2d6dcaa.js";
|
|
11
11
|
/**
|
|
12
12
|
* Body text for the blog post, overwrites sections if present
|
|
@@ -75,6 +75,10 @@ type TextAlignment = "left" | "center";
|
|
|
75
75
|
* Select a vertical alignment for the content
|
|
76
76
|
*/
|
|
77
77
|
type VerticalAlignmentOfTheContent = "center" | "top" | "bottom";
|
|
78
|
+
/**
|
|
79
|
+
* Toggle padding of the content
|
|
80
|
+
*/
|
|
81
|
+
type Padding1 = boolean;
|
|
78
82
|
interface CtaProps {
|
|
79
83
|
headline?: ComponentHeadline;
|
|
80
84
|
sub?: ComponentSubheadline;
|
|
@@ -88,6 +92,7 @@ interface CtaProps {
|
|
|
88
92
|
order?: Order;
|
|
89
93
|
textAlign?: TextAlignment;
|
|
90
94
|
align?: VerticalAlignmentOfTheContent;
|
|
95
|
+
padding?: Padding1;
|
|
91
96
|
}
|
|
92
97
|
interface Button {
|
|
93
98
|
label?: Label;
|
|
@@ -110,4 +115,4 @@ interface Order {
|
|
|
110
115
|
mobileImageLast?: MobileImageAfterText;
|
|
111
116
|
desktopImageLast?: DesktopImageAfterText;
|
|
112
117
|
}
|
|
113
|
-
export { ComponentHeadline, ComponentSubheadline, ComponentText, HighlightText, ColorNeutral, Label, Icon, Target, BackgroundColor, BackgroundImage, ImageSource, Padding, AltText, VerticalAlignmentOfTheImage, MobileImageAfterText, DesktopImageAfterText, TextAlignment, VerticalAlignmentOfTheContent, CtaProps, Button, Image, Order };
|
|
118
|
+
export { ComponentHeadline, ComponentSubheadline, ComponentText, HighlightText, ColorNeutral, Label, Icon, Target, BackgroundColor, BackgroundImage, ImageSource, Padding, AltText, VerticalAlignmentOfTheImage, MobileImageAfterText, DesktopImageAfterText, TextAlignment, VerticalAlignmentOfTheContent, Padding1, CtaProps, Button, Image, Order };
|
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
-
import { CtaProps } from "./CtaProps-
|
|
6
|
+
import { CtaProps } from "./CtaProps-fd5e75dc.js";
|
|
7
7
|
import { DividerProps } from "./DividerProps-2ef31901.js";
|
|
8
8
|
import { FaqProps } from "./FaqProps-ad618cd5.js";
|
|
9
9
|
import { FeaturesProps } from "./FeaturesProps-e58616a5.js";
|
|
10
10
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
11
11
|
import { HeroProps } from "./HeroProps-f704d270.js";
|
|
12
12
|
import { HtmlProps } from "./HtmlProps-8e95ed81.js";
|
|
13
|
-
import { ImageStoryProps } from "./ImageStoryProps-
|
|
13
|
+
import { ImageStoryProps } from "./ImageStoryProps-e853e1e7.js";
|
|
14
14
|
import { ImageTextProps } from "./ImageTextProps-9286cca4.js";
|
|
15
15
|
import { LogosProps } from "./LogosProps-f9474fe2.js";
|
|
16
16
|
import { MosaicProps } from "./MosaicProps-d52c7151.js";
|
|
17
|
-
import { SliderProps } from "./SliderProps-
|
|
17
|
+
import { SliderProps } from "./SliderProps-fd5e75dc.js";
|
|
18
18
|
import { StatsProps } from "./StatsProps-bf5ef578.js";
|
|
19
19
|
import { TeaserCardProps } from "./TeaserCardProps-b9c28e78.js";
|
|
20
20
|
import { TestimonialsProps } from "./TestimonialsProps-f7211553.js";
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
4
4
|
* and run json-schema-to-typescript to regenerate this file.
|
|
5
5
|
*/
|
|
6
|
-
import { CtaProps } from "./CtaProps-
|
|
6
|
+
import { CtaProps } from "./CtaProps-fd5e75dc.js";
|
|
7
7
|
import { FeaturesProps } from "./FeaturesProps-e58616a5.js";
|
|
8
8
|
import { GalleryProps } from "./GalleryProps-76e7de44.js";
|
|
9
9
|
import { HeroProps } from "./HeroProps-f704d270.js";
|
|
@@ -401,6 +401,12 @@
|
|
|
401
401
|
],
|
|
402
402
|
"default": "center"
|
|
403
403
|
},
|
|
404
|
+
"padding": {
|
|
405
|
+
"title": "Padding",
|
|
406
|
+
"description": "Toggle padding of the content",
|
|
407
|
+
"type": "boolean",
|
|
408
|
+
"default": false
|
|
409
|
+
},
|
|
404
410
|
"type": {
|
|
405
411
|
"const": "cta"
|
|
406
412
|
}
|
|
@@ -1662,6 +1668,12 @@
|
|
|
1662
1668
|
],
|
|
1663
1669
|
"default": "center"
|
|
1664
1670
|
},
|
|
1671
|
+
"padding": {
|
|
1672
|
+
"title": "Padding",
|
|
1673
|
+
"description": "Toggle padding of the content",
|
|
1674
|
+
"type": "boolean",
|
|
1675
|
+
"default": false
|
|
1676
|
+
},
|
|
1665
1677
|
"type": {
|
|
1666
1678
|
"const": "cta"
|
|
1667
1679
|
}
|
|
@@ -3822,6 +3834,12 @@
|
|
|
3822
3834
|
],
|
|
3823
3835
|
"default": "center"
|
|
3824
3836
|
},
|
|
3837
|
+
"padding": {
|
|
3838
|
+
"title": "Padding",
|
|
3839
|
+
"description": "Toggle padding of the content",
|
|
3840
|
+
"type": "boolean",
|
|
3841
|
+
"default": false
|
|
3842
|
+
},
|
|
3825
3843
|
"type": {
|
|
3826
3844
|
"const": "cta"
|
|
3827
3845
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogOverviewProps } from "../../BlogOverviewProps-
|
|
1
|
+
import { BlogOverviewProps } from "../../BlogOverviewProps-9f207f1c.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogOverview: FC<PropsWithChildren<BlogOverviewProps>>;
|
|
4
4
|
export type { BlogOverviewProps };
|
|
@@ -677,6 +677,12 @@
|
|
|
677
677
|
],
|
|
678
678
|
"default": "center"
|
|
679
679
|
},
|
|
680
|
+
"padding": {
|
|
681
|
+
"title": "Padding",
|
|
682
|
+
"description": "Toggle padding of the content",
|
|
683
|
+
"type": "boolean",
|
|
684
|
+
"default": false
|
|
685
|
+
},
|
|
680
686
|
"type": {
|
|
681
687
|
"const": "cta"
|
|
682
688
|
}
|
|
@@ -1938,6 +1944,12 @@
|
|
|
1938
1944
|
],
|
|
1939
1945
|
"default": "center"
|
|
1940
1946
|
},
|
|
1947
|
+
"padding": {
|
|
1948
|
+
"title": "Padding",
|
|
1949
|
+
"description": "Toggle padding of the content",
|
|
1950
|
+
"type": "boolean",
|
|
1951
|
+
"default": false
|
|
1952
|
+
},
|
|
1941
1953
|
"type": {
|
|
1942
1954
|
"const": "cta"
|
|
1943
1955
|
}
|
|
@@ -3581,6 +3593,12 @@
|
|
|
3581
3593
|
],
|
|
3582
3594
|
"default": "center"
|
|
3583
3595
|
},
|
|
3596
|
+
"padding": {
|
|
3597
|
+
"title": "Padding",
|
|
3598
|
+
"description": "Toggle padding of the content",
|
|
3599
|
+
"type": "boolean",
|
|
3600
|
+
"default": false
|
|
3601
|
+
},
|
|
3584
3602
|
"type": {
|
|
3585
3603
|
"const": "cta"
|
|
3586
3604
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BlogPostProps } from "../../BlogPostProps-
|
|
1
|
+
import { BlogPostProps } from "../../BlogPostProps-6b3cff22.js";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
declare const BlogPost: FC<PropsWithChildren<BlogPostProps>>;
|
|
4
4
|
export type { BlogPostProps };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.dsa-cta {
|
|
2
2
|
--dsa-cta--gap: var(--ks-spacing-stack-m) var(--ks-spacing-inline-m);
|
|
3
|
-
--dsa-cta__content--vertical-padding: var(--
|
|
3
|
+
--dsa-cta__content--vertical-padding: var(--dsa-content--vertical-spacing);
|
|
4
4
|
--dsa-cta__content--horizontal-padding: var(--dsa-content--horizontal-spacing);
|
|
5
5
|
--dsa-cta__content--max-width: var(--dsa-content--width_narrow);
|
|
6
6
|
--dsa-cta__copy--font: var(--dsa-rich-text--font);
|
|
@@ -42,11 +42,14 @@
|
|
|
42
42
|
padding: 0;
|
|
43
43
|
}
|
|
44
44
|
.dsa-cta.c-storytelling.dsa-cta--image-padding .c-storytelling__image {
|
|
45
|
-
padding: var(--dsa-
|
|
45
|
+
padding: var(--dsa-cta__content--vertical-padding, var(--dsa-content--vertical-spacing)) var(--dsa-cta__content--horizontal-padding, var(--dsa-content--horizontal-spacing));
|
|
46
46
|
}
|
|
47
47
|
.dsa-cta.c-storytelling .c-storytelling__box__content {
|
|
48
48
|
max-width: var(--dsa-cta__content--max-width, var(--dsa-content--width_narrow));
|
|
49
49
|
}
|
|
50
|
+
.dsa-cta.c-storytelling .c-storytelling__box:only-child {
|
|
51
|
+
--c-storytelling--horizontal-padding: var(--dsa-cta__content--horizontal-padding);
|
|
52
|
+
}
|
|
50
53
|
.dsa-cta.c-storytelling .c-storytelling__box:only-child .c-storytelling__box__content {
|
|
51
54
|
max-width: 100%;
|
|
52
55
|
}
|
|
@@ -79,7 +82,7 @@
|
|
|
79
82
|
}
|
|
80
83
|
}
|
|
81
84
|
@container storytelling (min-width: 640px) {
|
|
82
|
-
.dsa-cta.c-storytelling.c-storytelling--order-desktop-image-last .c-storytelling__box {
|
|
85
|
+
.dsa-cta.c-storytelling.c-storytelling--order-desktop-image-last .c-storytelling__box:not(:only-child) {
|
|
83
86
|
padding-right: 0;
|
|
84
87
|
}
|
|
85
88
|
.dsa-cta.c-storytelling.c-storytelling--order-desktop-image-last .c-storytelling__image {
|
|
@@ -125,6 +125,12 @@
|
|
|
125
125
|
"type": "string",
|
|
126
126
|
"enum": ["center", "top", "bottom"],
|
|
127
127
|
"default": "center"
|
|
128
|
+
},
|
|
129
|
+
"padding": {
|
|
130
|
+
"title": "Padding",
|
|
131
|
+
"description": "Toggle padding of the content",
|
|
132
|
+
"type": "boolean",
|
|
133
|
+
"default": false
|
|
128
134
|
}
|
|
129
135
|
},
|
|
130
136
|
"additionalProperties": false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { CtaProps } from "../../CtaProps-
|
|
3
|
+
import { CtaProps } from "../../CtaProps-fd5e75dc.js";
|
|
4
4
|
declare const CtaContextDefault: import("react").ForwardRefExoticComponent<CtaProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const CtaContext: import("react").Context<import("react").ForwardRefExoticComponent<CtaProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const Cta: import("react").ForwardRefExoticComponent<CtaProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -7,13 +7,13 @@ import classnames from 'classnames';
|
|
|
7
7
|
import { useButtonGroup } from '../button-group/index.js';
|
|
8
8
|
import '@kickstartds/base/lib/button-group';
|
|
9
9
|
|
|
10
|
-
const CtaContextDefault = forwardRef(({ headline, highlightText = false, sub, image, text, textAlign, backgroundImage, backgroundColor, colorNeutral, align, order, buttons = [], ...rest }, ref) => {
|
|
10
|
+
const CtaContextDefault = forwardRef(({ headline, highlightText = false, sub, image, text, textAlign, backgroundImage, backgroundColor, colorNeutral, align, padding, order, buttons = [], ...rest }, ref) => {
|
|
11
11
|
const ButtonGroup = useButtonGroup();
|
|
12
12
|
return (jsx(ButtonContext.Provider
|
|
13
13
|
// @ts-expect-error
|
|
14
14
|
, {
|
|
15
15
|
// @ts-expect-error
|
|
16
|
-
value: ButtonGroup, children: jsx(Storytelling, { ...rest, ref: ref, className: classnames("dsa-cta", highlightText ? `dsa-cta--highlight-text` : "", colorNeutral ? `dsa-cta--color-neutral` : "", image?.padding ? `dsa-cta--image-padding` : "", !
|
|
16
|
+
value: ButtonGroup, children: jsx(Storytelling, { ...rest, ref: ref, className: classnames("dsa-cta", highlightText ? `dsa-cta--highlight-text` : "", colorNeutral ? `dsa-cta--color-neutral` : "", image?.padding ? `dsa-cta--image-padding` : "", !padding ? `dsa-cta--no-padding` : "", align && align !== "center" ? `dsa-cta--align-${align}` : ""), backgroundImage: backgroundImage, backgroundColor: backgroundColor, full: true, image: {
|
|
17
17
|
source: image?.src,
|
|
18
18
|
order: order,
|
|
19
19
|
vAlign: image?.align,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { ImageStoryProps } from "../../ImageStoryProps-
|
|
3
|
+
import { ImageStoryProps } from "../../ImageStoryProps-e853e1e7.js";
|
|
4
4
|
declare const ImageStoryContextDefault: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const ImageStoryContext: import("react").Context<import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>>;
|
|
6
6
|
declare const ImageStory: import("react").ForwardRefExoticComponent<ImageStoryProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -29,7 +29,7 @@ interface SettingsProps {
|
|
|
29
29
|
seo: SeoProps;
|
|
30
30
|
iconSprite?: IconSprite;
|
|
31
31
|
}
|
|
32
|
-
export * from "../../BlogPostProps-
|
|
33
|
-
export * from "../../BlogOverviewProps-
|
|
34
|
-
export * from "../../PageProps-
|
|
32
|
+
export * from "../../BlogPostProps-6b3cff22.js";
|
|
33
|
+
export * from "../../BlogOverviewProps-9f207f1c.js";
|
|
34
|
+
export * from "../../PageProps-aa29c554.js";
|
|
35
35
|
export { IconSprite, SettingsProps };
|
|
@@ -401,6 +401,12 @@
|
|
|
401
401
|
],
|
|
402
402
|
"default": "center"
|
|
403
403
|
},
|
|
404
|
+
"padding": {
|
|
405
|
+
"title": "Padding",
|
|
406
|
+
"description": "Toggle padding of the content",
|
|
407
|
+
"type": "boolean",
|
|
408
|
+
"default": false
|
|
409
|
+
},
|
|
404
410
|
"type": {
|
|
405
411
|
"const": "cta"
|
|
406
412
|
}
|
|
@@ -1662,6 +1668,12 @@
|
|
|
1662
1668
|
],
|
|
1663
1669
|
"default": "center"
|
|
1664
1670
|
},
|
|
1671
|
+
"padding": {
|
|
1672
|
+
"title": "Padding",
|
|
1673
|
+
"description": "Toggle padding of the content",
|
|
1674
|
+
"type": "boolean",
|
|
1675
|
+
"default": false
|
|
1676
|
+
},
|
|
1665
1677
|
"type": {
|
|
1666
1678
|
"const": "cta"
|
|
1667
1679
|
}
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"id": "page-archetypes-blog-overview--blog-overview",
|
|
187
187
|
"group": "Page Archetypes/Blog Overview",
|
|
188
188
|
"name": "BlogOverview",
|
|
189
|
-
"code": "<BlogOverview\n cta={{\n align: 'center',\n buttons: [\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: true,\n headline: 'Get in touch',\n highlightText: false,\n image: {\n align: 'center',\n padding: false,\n src: 'img/contact-person.png'\n },\n order: {\n desktopImageLast: false,\n mobileImageLast: false\n },\n sub: 'Chat with us about getting your product or platform to market faster',\n text: 'Our modular design approach allows for flexibility and scalability in your application\\'s architecture.',\n textAlign: 'left',\n width: 'wide'\n }}\n latest={{\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n },\n {\n entry: 'Headless Websites'\n },\n {\n entry: 'Training'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences.'\n }}\n latestTitle=\"Latest Post\"\n list={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Investing in Digital Excellence: Systemics\\' Design System Trainings',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article3'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Training'\n }\n ],\n teaserText: 'Investing in your digital team\\'s growth is crucial for sustainable success. In this article, we highlight Systemics\\' Design System Trainings, designed to equip your team with the skills they need to harness your design system effectively.'\n }\n ]}\n listTitle=\"Recent Posts\"\n more={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n }\n ]}\n moreTitle=\"Featured Posts\"\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n }\n ]}\n/>",
|
|
189
|
+
"code": "<BlogOverview\n cta={{\n align: 'center',\n buttons: [\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ],\n colorNeutral: false,\n contentAlign: 'center',\n fullWidth: true,\n headline: 'Get in touch',\n highlightText: false,\n image: {\n align: 'center',\n padding: false,\n src: 'img/contact-person.png'\n },\n order: {\n desktopImageLast: false,\n mobileImageLast: false\n },\n padding: false,\n sub: 'Chat with us about getting your product or platform to market faster',\n text: 'Our modular design approach allows for flexibility and scalability in your application\\'s architecture.',\n textAlign: 'left',\n width: 'wide'\n }}\n latest={{\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics: A Journey from Vision to Reality',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n },\n {\n entry: 'Headless Websites'\n },\n {\n entry: 'Training'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence. We discuss our unique approach to Design System Consulting, where we align your vision with actionable strategies for seamless and captivating user experiences.'\n }}\n latestTitle=\"Latest Post\"\n list={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Investing in Digital Excellence: Systemics\\' Design System Trainings',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article3'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Training'\n }\n ],\n teaserText: 'Investing in your digital team\\'s growth is crucial for sustainable success. In this article, we highlight Systemics\\' Design System Trainings, designed to equip your team with the skills they need to harness your design system effectively.'\n }\n ]}\n listTitle=\"Recent Posts\"\n more={[\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-alex.png',\n name: 'John Doe',\n title: 'CEO'\n },\n date: '12/30/2022',\n headline: 'Mastering the Art of Design Systems with Systemics',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article1'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Design Systems'\n }\n ],\n teaserText: 'In this enlightening article, we delve into how Systemics, your go-to Design System agency, brings clarity and coherence to your brand\\'s digital presence..'\n },\n {\n alt: 'Image of a business team working',\n author: {\n image: 'img/people/author-emily.png',\n name: 'Jane Doe',\n title: 'CTO'\n },\n date: '12/30/2022',\n headline: 'Unleashing Innovation with Headless Websites',\n image: 'img/close-up-young-business-team-working.png',\n link: {\n label: 'Read more',\n text: 'Read article',\n url: 'https://example.com/article2'\n },\n readingTime: '5 min read',\n tags: [\n {\n entry: 'Headless Websites'\n }\n ],\n teaserText: 'Dive into the exciting world of headless architecture with Systemics. This article explores our Headless Websites service, a playground of innovation and creativity for brands seeking to redefine their digital journey.'\n }\n ]}\n moreTitle=\"Featured Posts\"\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n }\n ]}\n/>",
|
|
190
190
|
"args": {
|
|
191
191
|
"section": [
|
|
192
192
|
{
|
|
@@ -495,6 +495,7 @@
|
|
|
495
495
|
},
|
|
496
496
|
"textAlign": "left",
|
|
497
497
|
"align": "center",
|
|
498
|
+
"padding": false,
|
|
498
499
|
"fullWidth": true,
|
|
499
500
|
"contentAlign": "center",
|
|
500
501
|
"text": "Our modular design approach allows for flexibility and scalability in your application's architecture.",
|
|
@@ -507,7 +508,7 @@
|
|
|
507
508
|
"id": "page-archetypes-blog-post--blog-post",
|
|
508
509
|
"group": "Page Archetypes/Blog Post",
|
|
509
510
|
"name": "BlogPost",
|
|
510
|
-
"code": "<BlogPost\n aside={{\n author: {\n byline: 'Senior Developer',\n email: 'Jane.doe@example.com',\n image: {\n alt: 'Picture of Jane Smith',\n aspectRatio: 'square',\n fullWidth: false,\n src: 'img/people/author-emily.png'\n },\n links: [\n {\n href: 'tel:+4922868896620',\n icon: 'phone',\n label: '0228 / 688 966 20',\n newTab: false\n },\n {\n href: 'mailto:mail@example.com',\n icon: 'email',\n label: 'mail@example.com',\n newTab: false\n }\n ],\n name: 'Jane Doe',\n twitter: 'Janedoe'\n },\n date: '12/30/2022',\n readingTime: '5 min read',\n socialSharing: [\n {\n href: 'https://twitter.com/share?text=This%20is%20a%20blog%20post%20headline&url=https://example.com/blog',\n icon: 'twitter',\n title: 'Share on Twitter'\n },\n {\n href: 'https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog&title=This%20is%20a%20blog%20post%20headline',\n icon: 'linkedin',\n title: 'Share on LinkedIn'\n }\n ]\n }}\n contact={{\n copy: 'Leads with a vision for innovative, user-centric web designs, ensuring each project merges creativity with functionality to deliver outstanding digital experiences.',\n image: {\n alt: 'Picture of Jane Smith',\n aspectRatio: 'vertical',\n fullWidth: false,\n src: 'img/people/contact-john.png'\n },\n links: [\n {\n href: 'mailto:mail@example.com',\n icon: 'xing',\n label: 'john.smith',\n newTab: false\n },\n {\n href: '#',\n icon: 'twitter',\n label: '@john_smith',\n newTab: false\n }\n ],\n subtitle: 'Sales Representative',\n title: 'John Smith'\n }}\n content=\"\n## Introduction\nThe future of **Artificial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n \"\n cta={{\n align: 'center',\n buttons: [\n {\n icon: 'person',\n label: 'Contact Us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Learn More',\n target: '#'\n }\n ],\n colorNeutral: false,\n headline: 'Ready to Transform Your Development Process?',\n highlightText: false,\n image: {\n align: 'center',\n padding: true\n },\n order: {\n desktopImageLast: true,\n mobileImageLast: false\n },\n sub: 'Start your journey today.',\n text: 'Get started with our design system today and experience a new level of efficiency and consistency in your projects.',\n textAlign: 'center'\n }}\n head={{\n alt: 'Image of a business team working',\n date: '12/30/2022',\n headline: 'The Future of AI: A Glimpse into the Unseen',\n image: 'img/close-up-young-business-team-working.png',\n tags: [\n {\n entry: 'Technology'\n },\n {\n entry: 'AI'\n }\n ]\n }}\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n }\n ]}\n/>",
|
|
511
|
+
"code": "<BlogPost\n aside={{\n author: {\n byline: 'Senior Developer',\n email: 'Jane.doe@example.com',\n image: {\n alt: 'Picture of Jane Smith',\n aspectRatio: 'square',\n fullWidth: false,\n src: 'img/people/author-emily.png'\n },\n links: [\n {\n href: 'tel:+4922868896620',\n icon: 'phone',\n label: '0228 / 688 966 20',\n newTab: false\n },\n {\n href: 'mailto:mail@example.com',\n icon: 'email',\n label: 'mail@example.com',\n newTab: false\n }\n ],\n name: 'Jane Doe',\n twitter: 'Janedoe'\n },\n date: '12/30/2022',\n readingTime: '5 min read',\n socialSharing: [\n {\n href: 'https://twitter.com/share?text=This%20is%20a%20blog%20post%20headline&url=https://example.com/blog',\n icon: 'twitter',\n title: 'Share on Twitter'\n },\n {\n href: 'https://www.linkedin.com/shareArticle?mini=true&url=https://example.com/blog&title=This%20is%20a%20blog%20post%20headline',\n icon: 'linkedin',\n title: 'Share on LinkedIn'\n }\n ]\n }}\n contact={{\n copy: 'Leads with a vision for innovative, user-centric web designs, ensuring each project merges creativity with functionality to deliver outstanding digital experiences.',\n image: {\n alt: 'Picture of Jane Smith',\n aspectRatio: 'vertical',\n fullWidth: false,\n src: 'img/people/contact-john.png'\n },\n links: [\n {\n href: 'mailto:mail@example.com',\n icon: 'xing',\n label: 'john.smith',\n newTab: false\n },\n {\n href: '#',\n icon: 'twitter',\n label: '@john_smith',\n newTab: false\n }\n ],\n subtitle: 'Sales Representative',\n title: 'John Smith'\n }}\n content=\"\n## Introduction\nThe future of **Artificial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n \"\n cta={{\n align: 'center',\n buttons: [\n {\n icon: 'person',\n label: 'Contact Us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Learn More',\n target: '#'\n }\n ],\n colorNeutral: false,\n headline: 'Ready to Transform Your Development Process?',\n highlightText: false,\n image: {\n align: 'center',\n padding: true\n },\n order: {\n desktopImageLast: true,\n mobileImageLast: false\n },\n padding: false,\n sub: 'Start your journey today.',\n text: 'Get started with our design system today and experience a new level of efficiency and consistency in your projects.',\n textAlign: 'center'\n }}\n head={{\n alt: 'Image of a business team working',\n date: '12/30/2022',\n headline: 'The Future of AI: A Glimpse into the Unseen',\n image: 'img/close-up-young-business-team-working.png',\n tags: [\n {\n entry: 'Technology'\n },\n {\n entry: 'AI'\n }\n ]\n }}\n section={[\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n },\n {\n backgroundColor: 'default',\n buttons: [\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n },\n {\n disabled: false,\n label: 'Book a meeting',\n size: 'medium',\n variant: 'secondary'\n }\n ],\n content: {\n align: 'center',\n gutter: 'default',\n mode: 'list',\n tileWidth: 'default',\n width: 'unset'\n },\n headerSpacing: false,\n headline: {\n large: false,\n text: 'Section headline',\n width: 'unset'\n },\n inverted: false,\n spaceAfter: 'default',\n spaceBefore: 'default',\n spotlight: false,\n style: 'default',\n width: 'default'\n }\n ]}\n/>",
|
|
511
512
|
"args": {
|
|
512
513
|
"head": {
|
|
513
514
|
"date": "12/30/2022",
|
|
@@ -720,6 +721,7 @@
|
|
|
720
721
|
},
|
|
721
722
|
"textAlign": "center",
|
|
722
723
|
"align": "center",
|
|
724
|
+
"padding": false,
|
|
723
725
|
"text": "Get started with our design system today and experience a new level of efficiency and consistency in your projects."
|
|
724
726
|
},
|
|
725
727
|
"content": "\n## Introduction\nThe future of **Artificial Intelligence (AI)** is a topic that has been the subject of much debate. It's a field that's constantly evolving, with new advancements and breakthroughs happening all the time. [Learn more about AI](https://en.wikipedia.org/wiki/Artificial_intelligence)\n\n## The Current State of AI\nToday, AI is already a part of our daily lives. From *smart home devices* to *recommendation algorithms* on our favorite streaming services, AI is everywhere.\n\n## The Potential of AI\nThe potential of AI is immense. It has the ability to revolutionize industries, from healthcare to finance, and everything in between.\n\n## The Challenges of AI\nHowever, with great potential comes great challenges. Issues such as data privacy and the ethical implications of AI are just some of the hurdles that need to be overcome.\n\n## The Role of AI in Society\nAI has the potential to greatly impact society. It can lead to job creation in new industries, and can also help solve complex societal problems.\n\n## Conclusion\nThe future of AI is exciting and full of potential. However, it's important that we navigate this future with caution, ensuring that the benefits of AI are accessible to all, while minimizing its potential risks.\n ",
|
|
@@ -910,6 +912,7 @@
|
|
|
910
912
|
},
|
|
911
913
|
"textAlign": "center",
|
|
912
914
|
"align": "center",
|
|
915
|
+
"padding": false,
|
|
913
916
|
"text": "Get started with our design system today and experience a new level of efficiency and consistency in your projects."
|
|
914
917
|
},
|
|
915
918
|
"screenshot": "img/screenshots/components-cta--banner.png"
|
|
@@ -941,6 +944,7 @@
|
|
|
941
944
|
},
|
|
942
945
|
"textAlign": "center",
|
|
943
946
|
"align": "center",
|
|
947
|
+
"padding": false,
|
|
944
948
|
"text": "Our design system is built with scalability and efficiency in mind. It allows for consistent UI across different platforms, making your development process smoother and faster."
|
|
945
949
|
},
|
|
946
950
|
"screenshot": "img/screenshots/components-cta--highlighted.png"
|
|
@@ -972,6 +976,7 @@
|
|
|
972
976
|
},
|
|
973
977
|
"textAlign": "left",
|
|
974
978
|
"align": "center",
|
|
979
|
+
"padding": false,
|
|
975
980
|
"text": "Our design system offers a seamless and efficient way to build scalable applications. Experience the speed & scalability unlike anything seen before with our Headless CMS powered websites, web apps & composable architecture."
|
|
976
981
|
},
|
|
977
982
|
"screenshot": "img/screenshots/components-cta--left-aligned.png"
|
|
@@ -980,7 +985,7 @@
|
|
|
980
985
|
"id": "components-cta--product-advertisement",
|
|
981
986
|
"group": "Components/Cta",
|
|
982
987
|
"name": "ProductAdvertisement",
|
|
983
|
-
"code": "<Cta\n align=\"center\"\n backgroundImage=\"img/bg_dot-carpet-blue.svg\"\n buttons={[\n {\n icon: 'chevron-right',\n label: 'Shop Now',\n target: '/shop'\n },\n {\n label: 'Learn More',\n target: '/product-info'\n }\n ]}\n headline=\"Experience Immersive Sound\"\n highlightText\n image={{\n align: 'center',\n alt: 'Over-Ear Headphones',\n padding: false,\n src: 'img/showcases/comp_audio04.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"With Our Premium Over-Ear Headphones\"\n text=\"Our over-ear headphones provide an immersive audio experience. With noise-cancellation technology and high-quality sound.\"\n textAlign=\"left\"\n/>",
|
|
988
|
+
"code": "<Cta\n align=\"center\"\n backgroundImage=\"img/bg_dot-carpet-blue.svg\"\n buttons={[\n {\n icon: 'chevron-right',\n label: 'Shop Now',\n target: '/shop'\n },\n {\n label: 'Learn More',\n target: '/product-info'\n }\n ]}\n headline=\"Experience Immersive Sound\"\n highlightText\n image={{\n align: 'center',\n alt: 'Over-Ear Headphones',\n padding: false,\n src: 'img/showcases/comp_audio04.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n padding\n sub=\"With Our Premium Over-Ear Headphones\"\n text=\"Our over-ear headphones provide an immersive audio experience. With noise-cancellation technology and high-quality sound.\"\n textAlign=\"left\"\n/>",
|
|
984
989
|
"args": {
|
|
985
990
|
"headline": "Experience Immersive Sound",
|
|
986
991
|
"sub": "With Our Premium Over-Ear Headphones",
|
|
@@ -1009,6 +1014,7 @@
|
|
|
1009
1014
|
},
|
|
1010
1015
|
"textAlign": "left",
|
|
1011
1016
|
"align": "center",
|
|
1017
|
+
"padding": true,
|
|
1012
1018
|
"text": "Our over-ear headphones provide an immersive audio experience. With noise-cancellation technology and high-quality sound.",
|
|
1013
1019
|
"backgroundImage": "img/bg_dot-carpet-blue.svg"
|
|
1014
1020
|
},
|
|
@@ -1018,7 +1024,7 @@
|
|
|
1018
1024
|
"id": "components-cta--contact-banner",
|
|
1019
1025
|
"group": "Components/Cta",
|
|
1020
1026
|
"name": "ContactBanner",
|
|
1021
|
-
"code": "<Cta\n align=\"center\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n headline=\"Get in touch\"\n image={{\n align: 'center',\n padding: false,\n src: 'img/contact-person.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Chat with us about getting your product or platform to market faster\"\n text=\"Our modular design approach allows for flexibility and scalability in your application's architecture.\"\n textAlign=\"left\"\n/>",
|
|
1027
|
+
"code": "<Cta\n align=\"center\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n headline=\"Get in touch\"\n image={{\n align: 'center',\n padding: false,\n src: 'img/contact-person.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n padding\n sub=\"Chat with us about getting your product or platform to market faster\"\n text=\"Our modular design approach allows for flexibility and scalability in your application's architecture.\"\n textAlign=\"left\"\n/>",
|
|
1022
1028
|
"args": {
|
|
1023
1029
|
"headline": "Get in touch",
|
|
1024
1030
|
"sub": "Chat with us about getting your product or platform to market faster",
|
|
@@ -1047,6 +1053,7 @@
|
|
|
1047
1053
|
},
|
|
1048
1054
|
"textAlign": "left",
|
|
1049
1055
|
"align": "center",
|
|
1056
|
+
"padding": true,
|
|
1050
1057
|
"text": "Our modular design approach allows for flexibility and scalability in your application's architecture."
|
|
1051
1058
|
},
|
|
1052
1059
|
"screenshot": "img/screenshots/components-cta--contact-banner.png"
|
|
@@ -1055,7 +1062,7 @@
|
|
|
1055
1062
|
"id": "components-cta--split-banner",
|
|
1056
1063
|
"group": "Components/Cta",
|
|
1057
1064
|
"name": "SplitBanner",
|
|
1058
|
-
"code": "<Cta\n align=\"center\"\n backgroundColor=\"#001856\"\n buttons={[\n {\n icon: 'person',\n label: 'What can we do for you?',\n target: '#'\n }\n ]}\n colorNeutral\n headline=\"Design System Services\"\n image={{\n align: 'center',\n padding: false,\n src: 'img/colored-square.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"Here at Systemics, we bring a range of design system services that can make a difference.\"\n textAlign=\"left\"\n/>",
|
|
1065
|
+
"code": "<Cta\n align=\"center\"\n backgroundColor=\"#001856\"\n buttons={[\n {\n icon: 'person',\n label: 'What can we do for you?',\n target: '#'\n }\n ]}\n colorNeutral\n headline=\"Design System Services\"\n image={{\n align: 'center',\n padding: false,\n src: 'img/colored-square.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n padding\n sub=\"Subheadline\"\n text=\"Here at Systemics, we bring a range of design system services that can make a difference.\"\n textAlign=\"left\"\n/>",
|
|
1059
1066
|
"args": {
|
|
1060
1067
|
"headline": "Design System Services",
|
|
1061
1068
|
"sub": "Subheadline",
|
|
@@ -1079,6 +1086,7 @@
|
|
|
1079
1086
|
},
|
|
1080
1087
|
"textAlign": "left",
|
|
1081
1088
|
"align": "center",
|
|
1089
|
+
"padding": true,
|
|
1082
1090
|
"text": "Here at Systemics, we bring a range of design system services that can make a difference.",
|
|
1083
1091
|
"backgroundColor": "#001856"
|
|
1084
1092
|
},
|
|
@@ -1088,7 +1096,7 @@
|
|
|
1088
1096
|
"id": "components-cta--angled-image",
|
|
1089
1097
|
"group": "Components/Cta",
|
|
1090
1098
|
"name": "AngledImage",
|
|
1091
|
-
"code": "<Cta\n align=\"center\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n headline=\"Our **Approach** to Design Systems\"\n image={{\n align: 'center',\n padding:
|
|
1099
|
+
"code": "<Cta\n align=\"center\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n headline=\"Our **Approach** to Design Systems\"\n image={{\n align: 'center',\n padding: true,\n src: 'img/angled-image.png'\n }}\n order={{\n desktopImageLast: true,\n mobileImageLast: false\n }}\n padding\n sub=\"Subheadline\"\n text=\"We value efficiency without compromising quality. Our secret weapon? kickstartDS, a revolutionary code-first and open source framework for creating design systems.\n\nThis tool accelerates our development, saving you valuable time and helping us deliver top-notch results faster.\"\n textAlign=\"left\"\n/>",
|
|
1092
1100
|
"args": {
|
|
1093
1101
|
"headline": "Our **Approach** to Design Systems",
|
|
1094
1102
|
"sub": "Subheadline",
|
|
@@ -1107,7 +1115,7 @@
|
|
|
1107
1115
|
}
|
|
1108
1116
|
],
|
|
1109
1117
|
"image": {
|
|
1110
|
-
"padding":
|
|
1118
|
+
"padding": true,
|
|
1111
1119
|
"align": "center",
|
|
1112
1120
|
"src": "img/angled-image.png"
|
|
1113
1121
|
},
|
|
@@ -1117,6 +1125,7 @@
|
|
|
1117
1125
|
},
|
|
1118
1126
|
"textAlign": "left",
|
|
1119
1127
|
"align": "center",
|
|
1128
|
+
"padding": true,
|
|
1120
1129
|
"text": "We value efficiency without compromising quality. Our secret weapon? kickstartDS, a revolutionary code-first and open source framework for creating design systems.\n\nThis tool accelerates our development, saving you valuable time and helping us deliver top-notch results faster."
|
|
1121
1130
|
},
|
|
1122
1131
|
"screenshot": "img/screenshots/components-cta--angled-image.png"
|
|
@@ -1125,7 +1134,7 @@
|
|
|
1125
1134
|
"id": "components-cta--colored-banner",
|
|
1126
1135
|
"group": "Components/Cta",
|
|
1127
1136
|
"name": "ColoredBanner",
|
|
1128
|
-
"code": "<Cta\n align=\"center\"\n backgroundColor=\"#a30051\"\n buttons={[\n {\n label: 'Learn More',\n target: '#'\n },\n {\n label: 'Contact Us',\n target: '#'\n }\n ]}\n colorNeutral\n headline=\"Expertise in Scalable Solutions\"\n highlightText\n image={{\n align: 'center',\n padding: true\n }}\n order={{\n desktopImageLast: true,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"Leverage our expertise in creating scalable and robust applications using modern technologies.\"\n textAlign=\"left\"\n/>",
|
|
1137
|
+
"code": "<Cta\n align=\"center\"\n backgroundColor=\"#a30051\"\n buttons={[\n {\n label: 'Learn More',\n target: '#'\n },\n {\n label: 'Contact Us',\n target: '#'\n }\n ]}\n colorNeutral\n headline=\"Expertise in Scalable Solutions\"\n highlightText\n image={{\n align: 'center',\n padding: true\n }}\n order={{\n desktopImageLast: true,\n mobileImageLast: false\n }}\n padding\n sub=\"Subheadline\"\n text=\"Leverage our expertise in creating scalable and robust applications using modern technologies.\"\n textAlign=\"left\"\n/>",
|
|
1129
1138
|
"args": {
|
|
1130
1139
|
"headline": "Expertise in Scalable Solutions",
|
|
1131
1140
|
"sub": "Subheadline",
|
|
@@ -1151,6 +1160,7 @@
|
|
|
1151
1160
|
},
|
|
1152
1161
|
"textAlign": "left",
|
|
1153
1162
|
"align": "center",
|
|
1163
|
+
"padding": true,
|
|
1154
1164
|
"text": "Leverage our expertise in creating scalable and robust applications using modern technologies.",
|
|
1155
1165
|
"backgroundColor": "#a30051"
|
|
1156
1166
|
},
|
|
@@ -1160,7 +1170,7 @@
|
|
|
1160
1170
|
"id": "components-cta--align-bottom",
|
|
1161
1171
|
"group": "Components/Cta",
|
|
1162
1172
|
"name": "AlignBottom",
|
|
1163
|
-
"code": "<Cta\n align=\"
|
|
1173
|
+
"code": "<Cta\n align=\"bottom\"\n backgroundImage=\"img/grid-bg.svg\"\n buttons={[\n {\n icon: 'person',\n label: 'Contact us',\n target: '#'\n },\n {\n icon: 'date',\n label: 'Book a meeting',\n target: '#'\n }\n ]}\n headline=\"Custom Solutions\"\n image={{\n align: 'center',\n padding: true,\n src: 'img/offset-image.png'\n }}\n order={{\n desktopImageLast: false,\n mobileImageLast: false\n }}\n sub=\"Subheadline\"\n text=\"At Systemics, we believe in the power of technology to transform businesses. Our team of experienced professionals is dedicated to providing innovative solutions that meet the unique needs of your business.\n\nWe understand that every business is different, and that's why we offer custom solutions tailored to your specific business needs and requirements.\"\n textAlign=\"left\"\n/>",
|
|
1164
1174
|
"args": {
|
|
1165
1175
|
"headline": "Custom Solutions",
|
|
1166
1176
|
"sub": "Subheadline",
|
|
@@ -1188,10 +1198,10 @@
|
|
|
1188
1198
|
"desktopImageLast": false
|
|
1189
1199
|
},
|
|
1190
1200
|
"textAlign": "left",
|
|
1191
|
-
"align": "
|
|
1201
|
+
"align": "bottom",
|
|
1202
|
+
"padding": false,
|
|
1192
1203
|
"text": "At Systemics, we believe in the power of technology to transform businesses. Our team of experienced professionals is dedicated to providing innovative solutions that meet the unique needs of your business.\n\nWe understand that every business is different, and that's why we offer custom solutions tailored to your specific business needs and requirements.",
|
|
1193
|
-
"backgroundImage": "img/grid-bg.svg"
|
|
1194
|
-
"contentAlign": "bottom"
|
|
1204
|
+
"backgroundImage": "img/grid-bg.svg"
|
|
1195
1205
|
},
|
|
1196
1206
|
"screenshot": "img/screenshots/components-cta--align-bottom.png"
|
|
1197
1207
|
},
|
|
@@ -387,6 +387,12 @@
|
|
|
387
387
|
],
|
|
388
388
|
"default": "center"
|
|
389
389
|
},
|
|
390
|
+
"padding": {
|
|
391
|
+
"title": "Padding",
|
|
392
|
+
"description": "Toggle padding of the content",
|
|
393
|
+
"type": "boolean",
|
|
394
|
+
"default": false
|
|
395
|
+
},
|
|
390
396
|
"type": {
|
|
391
397
|
"const": "cta"
|
|
392
398
|
}
|
|
@@ -1648,6 +1654,12 @@
|
|
|
1648
1654
|
],
|
|
1649
1655
|
"default": "center"
|
|
1650
1656
|
},
|
|
1657
|
+
"padding": {
|
|
1658
|
+
"title": "Padding",
|
|
1659
|
+
"description": "Toggle padding of the content",
|
|
1660
|
+
"type": "boolean",
|
|
1661
|
+
"default": false
|
|
1662
|
+
},
|
|
1651
1663
|
"type": {
|
|
1652
1664
|
"const": "cta"
|
|
1653
1665
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
|
-
import { SliderProps } from "../../SliderProps-
|
|
3
|
+
import { SliderProps } from "../../SliderProps-fd5e75dc.js";
|
|
4
4
|
declare const Slider: import("react").ForwardRefExoticComponent<SliderProps & HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
5
|
export type { SliderProps };
|
|
6
6
|
export { Slider };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HTMLAttributes } from "react";
|
|
3
3
|
import { TestimonialsProps } from "../../TestimonialsProps-f7211553.js";
|
|
4
|
-
import { SliderProps } from "../../SliderProps-
|
|
4
|
+
import { SliderProps } from "../../SliderProps-fd5e75dc.js";
|
|
5
5
|
interface ConditionalSliderProps extends SliderProps {
|
|
6
6
|
layout: "slider" | "list" | "alternating";
|
|
7
7
|
}
|
package/dist/tokens/themes.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on Fri, 10 Jan 2025 14:
|
|
3
|
+
* Generated on Fri, 10 Jan 2025 14:35:48 GMT
|
|
4
4
|
*/
|
|
5
5
|
:root [ks-theme=business] {
|
|
6
6
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -2727,7 +2727,7 @@
|
|
|
2727
2727
|
}
|
|
2728
2728
|
/**
|
|
2729
2729
|
* Do not edit directly
|
|
2730
|
-
* Generated on Fri, 10 Jan 2025 14:
|
|
2730
|
+
* Generated on Fri, 10 Jan 2025 14:35:53 GMT
|
|
2731
2731
|
*/
|
|
2732
2732
|
:root [ks-theme=google] {
|
|
2733
2733
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -5458,7 +5458,7 @@
|
|
|
5458
5458
|
}
|
|
5459
5459
|
/**
|
|
5460
5460
|
* Do not edit directly
|
|
5461
|
-
* Generated on Fri, 10 Jan 2025 14:
|
|
5461
|
+
* Generated on Fri, 10 Jan 2025 14:35:51 GMT
|
|
5462
5462
|
*/
|
|
5463
5463
|
:root [ks-theme=ngo] {
|
|
5464
5464
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
|
@@ -8459,7 +8459,7 @@
|
|
|
8459
8459
|
}
|
|
8460
8460
|
/**
|
|
8461
8461
|
* Do not edit directly
|
|
8462
|
-
* Generated on Fri, 10 Jan 2025 14:
|
|
8462
|
+
* Generated on Fri, 10 Jan 2025 14:35:55 GMT
|
|
8463
8463
|
*/
|
|
8464
8464
|
:root [ks-theme=telekom] {
|
|
8465
8465
|
--ks-background-color-accent-base: var(--ks-color-primary-to-bg-8-base);
|
package/dist/tokens/tokens.css
CHANGED
package/dist/tokens/tokens.js
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|