Skip to content

Commit 98acab5

Browse files
committed
Included @cdavernas reviews
Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent 81d5cee commit 98acab5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Diff for: src/components/Section.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const {
4848
{ title && <h2 class:list={['text-primary', 'text-3xl', 'font-bold', 'text-center', !subTitle ? 'mb-12' : 'mb-4']}>{ title }</h2> }
4949
{ subTitle && <p class="text-xl text-center mb-12">{ subTitle }</p> }
5050
{ isGrid ?
51-
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
51+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
5252
<slot />
5353
</div> :
5454
<slot />

Diff for: src/pages/index.astro

+4-5
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,10 @@ const examples = (await getCollection('example'));
161161

162162
<!-- CNCF & LF -->
163163
<Section class="bg-base-300">
164-
<h2 class="text-primary text-3xl font-bold text-center mb-4">Proudly Open Source</h2>
165-
<p class="text-center">
166-
Serverless Workflow is an open-source project under the governance of the <a class="link link-accent" href="https://www.cncf.io/" target="_blank" rel="noopener">Cloud Native Computing Foundation (CNCF)</a> and a proud part of the <a class="link link-accent" href="https://www.linuxfoundation.org/" target="_blank" rel="noopener">Linux Foundation</a>.
167-
</p>
168-
<div class="grid grid-cols-2 gap-8">
164+
<h2 class="text-primary text-3xl font-bold text-center mb-4">Innovation in the Open</h2>
165+
<p class="text-center mb-4">Serverless Workflow is an open-source project under the governance of the <a class="link link-accent" href="https://www.cncf.io/" target="_blank" rel="noopener">Cloud Native Computing Foundation (CNCF)</a> and a part of the <a class="link link-accent" href="https://www.linuxfoundation.org/" target="_blank" rel="noopener">Linux Foundation</a>.</p>
166+
<p class="text-center">The project is in the <a href="https://landscape.cncf.io/guide#app-definition-and-development--application-definition-image-build" target="_blank" rel="noopener">Application Definition & Image Build</a> landscape.</p>
167+
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
169168
<Card image="img/logos/cncf-color-bg.svg" imageDark="img/logos/cncf-white-logo.svg" imageSize="medium"></Card>
170169
<Card image="img/logos/lf-stacked-color.svg" imageDark="img/logos/lf-stacked-white.svg" imageSize="medium"></Card>
171170
</div>

0 commit comments

Comments
 (0)