Skip to content

Commit 946a7b7

Browse files
committed
chore: rearrange sections
1 parent f3b3a19 commit 946a7b7

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

src/content/sections/de/Services.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import Sprite from '../../../components/Sprite.astro';
77

88
<ServicesSection>
99

10+
<h2>What we offer</h2>
11+
1012
<Tabs>
1113
<TabsList>
1214
<TabsTab id="software" controls="software-panel" selected>

src/content/sections/en/Services.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import Sprite from '../../../components/Sprite.astro';
77

88
<ServicesSection>
99

10+
<h2>What we offer</h2>
11+
1012
<Tabs>
1113
<TabsList>
1214
<TabsTab id="software" controls="software-panel" selected>

src/layouts/sections/QuestionsSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</section>
44
<style>
55
section {
6-
background-color: var(--color-white);
6+
background-color: var(--color-background);
77
padding: 8rem var(--size-page-padding);
88
}
99
</style>

src/layouts/sections/ReferencesSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</section>
44
<style>
55
section {
6-
background-color: var(--color-background);
6+
background-color: var(--color-white);
77
padding: 8rem var(--size-page-padding);
88
z-index: 1;
99
}

src/layouts/sections/ServicesSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<style>
66
section {
77
background-color: var(--color-white);
8-
padding: 8rem var(--size-page-padding) var(--size-gutter-big) var(--size-page-padding);
8+
padding: 8rem var(--size-page-padding);
99
z-index: 1;
1010

1111
.tab {

src/layouts/sections/ToolsSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</section>
44
<style>
55
section {
6-
background-color: var(--color-white);
6+
background-color: var(--color-background);
77
padding: var(--size-gutter-big) var(--size-page-padding) 8rem var(--size-page-padding);
88
z-index: 1;
99
}

src/pages/[...locale]/index.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ const { Content: QuestionsSection } = await render(await getEntry("sections", `$
2828
<SpotlightSection />
2929
<Divider kind="single" firstSegmentColor="var(--color-white)" fixAntialiasingBottom />
3030
<ServicesSection />
31-
<ToolsSection />
3231
<Divider kind="single" firstSegmentColor="var(--color-white)" flipVertical fixAntialiasingTop />
33-
<ReferencesSection />
32+
<ToolsSection />
3433
<Divider kind="single" firstSegmentColor="var(--color-white)" fixAntialiasingBottom />
34+
<ReferencesSection />
35+
<Divider kind="single" firstSegmentColor="var(--color-white)" flipVertical fixAntialiasingTop />
3536
<QuestionsSection />
3637
</Shell>

0 commit comments

Comments
 (0)