Skip to content

Commit 8afcd18

Browse files
committed
- readded .github folder - changed netlify.toml indentation - fixed usage of dynamic Tailwind class not being present in the css output Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent 50f2e05 commit 8afcd18

File tree

8 files changed

+90
-28
lines changed

8 files changed

+90
-28
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @ricardozanini @cdavernas

.github/ISSUE_TEMPLATE/website.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Website Enhancement Request
3+
about: Suggest an enhancement to the Serverless Workflow Specification Website
4+
labels: kind/feature
5+
6+
---
7+
8+
**What would you like to be added**:
9+
10+
**Why is this needed**:

.github/OWNERS

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
reviewers:
2+
- ricardozanini
3+
- cdavernas
4+
approvers:
5+
- ricardozanini
6+
- cdavernas
7+
labels:
8+
- sig/contributor-experience

.github/PULL_REQUEST_TEMPLATE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
**Many thanks for submitting your Pull Request :heart:!**
2+
3+
**What this PR does / why we need it**:
4+
5+
**Special notes for reviewers**:
6+
7+
**Additional information (if needed):**

netlify.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build]
2-
command = "npm run build"
3-
publish = "dist"
2+
command = "npm run build"
3+
publish = "dist"

src/components/Card.astro

+30-6
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,50 @@ const {
1616
} = Astro.props;
1717
---
1818

19-
<div class:list={['card', `text-${alignment}`]}>
19+
<div class:list={[
20+
'card',
21+
(
22+
alignment === 'start' ? `text-start` :
23+
alignment === 'end' ? `text-end` :
24+
`text-center`
25+
),
26+
]}>
2027
<div class="card-body">
2128
{ image &&
22-
<div class:list={['my-4', 'flex', `justify-${alignment}`]}>
23-
<img src={image} class={`img-logo-${imageSize}`} />
29+
<div class:list={[
30+
'my-4',
31+
'flex',
32+
(
33+
alignment === 'start' ? `justify-start` :
34+
alignment === 'end' ? `justify-end` :
35+
`justify-center`
36+
),
37+
]}>
38+
<img src={image} class={`img--${imageSize}`} />
2439
</div>
2540
}
2641
{ icon && <i class={icon}></i> }
27-
<h3 class:list={['card-title', `justify-${alignment}`]}>{ title }</h3>
42+
<h3 class:list={[
43+
'card-title',
44+
(
45+
alignment === 'start' ? `justify-start` :
46+
alignment === 'end' ? `justify-end` :
47+
`justify-center`
48+
),
49+
]}>
50+
{ title }
51+
</h3>
2852
<slot />
2953
</div>
3054
</div>
3155

3256
<style>
33-
.img-logo-small {
57+
.img--small {
3458
height: 50px;
3559
max-width: none;
3660
}
3761

38-
.img-logo-medium {
62+
.img--medium {
3963
height: 75px;
4064
max-width: none;
4165
}

src/components/Section.astro

+28-16
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,50 @@
11
---
22
type colorBase = 'primary' | 'secondary' | 'accent' | 'neutral';
3-
type textColor = colorBase | 'base';
4-
type bgColor = colorBase | 'base-100' | 'base-200' | 'base-300';
3+
type size = 'small' | 'medium' | 'large';
54
interface Props {
6-
paddingY?: '4' | '8' | '16',
7-
paddingX?: '4' | '8 '| '16',
8-
bg?: bgColor;
9-
color?: textColor;
5+
paddingY?: size;
6+
paddingX?: size;
107
isGrid?: boolean;
11-
width?: '3' | '5' | '7' | 'full',
8+
width?: size | 'full';
129
title?: string;
1310
subTitle?:string;
11+
class?: string;
1412
}
1513
1614
const {
17-
paddingY = '16',
18-
paddingX = '4',
15+
paddingY,
16+
paddingX,
1917
isGrid = false,
20-
bg,
21-
color,
2218
width = '7',
2319
title,
2420
subTitle,
21+
class: className
2522
} = Astro.props;
2623
---
2724

2825
<div class:list={[
29-
`py-${paddingY}`,
30-
`px-${paddingX}`,
31-
bg ? `bg-${bg}` : '',
32-
color ? `text-${color}-content` : ''
26+
className,
27+
(
28+
paddingY === 'small' ? `py-4` :
29+
paddingY === 'medium' ? `py-8` :
30+
`py-16`
31+
),
32+
(
33+
paddingX === 'large' ? `px-16` :
34+
paddingX === 'medium' ? `px-8` :
35+
`px-4`
36+
),
3337
]}
3438
>
35-
<div class:list={['mx-auto', `max-w-${width}xl` ]}>
39+
<div class:list={[
40+
'mx-auto',
41+
(
42+
width === 'full' ? `max-w-full` :
43+
width === 'small' ? `max-w-3xl` :
44+
width === 'medium' ? `max-w-5xl` :
45+
`max-w-7xl`
46+
),
47+
]}>
3648
{ title && <h2 class:list={['text-3xl', 'font-bold', 'text-center', !subTitle ? 'mb-12' : '']}>{ title }</h2> }
3749
{ subTitle && <p class="text-1xl text-center mb-4">{ subTitle }</p> }
3850
{ isGrid ?

src/pages/index.astro

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { Code } from 'astro:components';
2424
</div>
2525
</div>
2626
<!-- Sub Hero -->
27-
<Section width="3" bg="primary" color="primary">
27+
<Section width="small" class="bg-primary text-primary-content">
2828
<p class="text-2xl text-center font-bold">The Serverless Workflow DSL is a high-level language that reshapes the terrain of workflow creation, boasting a design that is ubiquitous, intuitive, imperative, and fluent.</p>
2929
</Section>
3030

@@ -51,7 +51,7 @@ import { Code } from 'astro:components';
5151
</Section>
5252

5353
<!-- Samples -->
54-
<Section title="User-Friendly DSL: Workflows Made Simple" bg="base-200">
54+
<Section title="User-Friendly DSL: Workflows Made Simple" class="bg-base-200">
5555
<div role="tablist" class="tabs tabs-lifted">
5656
<input type="radio" name="code_tabs" role="tab" class="tab" aria-label="Minimal" checked />
5757
<div role="tabpanel" class="tab-content bg-base-100 border-base-300 rounded-box p-6">
@@ -112,7 +112,7 @@ do:
112112
</Section>
113113

114114
<!-- Projects -->
115-
<Section title="Open Source projects supporting our DSL" bg="base-200" isGrid={true}>
115+
<Section title="Open Source projects supporting our DSL" class="bg-base-200" isGrid={true}>
116116
<Card title="Apache EventMesh Workflow" image="img/logos/eventmesh.png">
117117
<p>Apache EventMesh Workflow is a cloud vendor-independent, cloud-native-oriented Serverless Workflow Runtime based on Serverless Workflow specification, and provides durability, reliability, scalability, and observability capabilities.</p>
118118
<a class="link link-primary" href="https://github.com/apache/eventmesh-workflow" target="_blank" rel="noopener">Get Started</a>
@@ -160,7 +160,7 @@ do:
160160
</Section>
161161

162162
<!-- Sponsors -->
163-
<Section title="Support our Project" subTitle="Our sponsors, along with our community, help our project grow and stay vendor-neutral through their donations." bg="base-200">
163+
<Section title="Support our Project" subTitle="Our sponsors, along with our community, help our project grow and stay vendor-neutral through their donations." class="bg-base-200">
164164
<div class="mx-auto w-full md:w-1/2 lg:w-1/3 card text-center">
165165
<Card title="Neuroglia" image="img/logos/neuroglia.png" imageSize="medium">
166166
<p>Neuroglia is a consultancy and solution design company for the digital transformation of companies and their services.</p>

0 commit comments

Comments
 (0)