Skip to content

Commit 89189e3

Browse files
committed
chore: refactor technologies section
1 parent e0e522f commit 89189e3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import ToolsSection from "../../../layouts/sections/ToolsSection.astro";
1+
import TechnologiesSection from "../../../layouts/sections/TechnologiesSection.astro";
22

3-
<ToolsSection class="dark-background">
3+
<TechnologiesSection class="dark-background">
44
<h2 slot="title">Womit wir arbeiten</h2>
55

66
Dies ist eine Auswahl der Werkzeuge und Technologien, die wir täglich verwenden. Wir sind überzeugt, dass jede Programmiersprache, jedes Framework oder Tool Bereiche hat, in denen es besonders geeignet ist, und andere, in denen es weniger passt. Ein wichtiger Faktor bei unserer Werkzeugwahl ist die Nachhaltigkeit und langfristige Verfügbarkeit der eingesetzten Technologien.
7-
</ToolsSection>
7+
</TechnologiesSection>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import ToolsSection from "../../../layouts/sections/ToolsSection.astro";
1+
import TechnologiesSection from "../../../layouts/sections/TechnologiesSection.astro";
22

3-
<ToolsSection class="dark-background">
3+
<TechnologiesSection class="dark-background">
44
<h2 slot="title">What we work with</h2>
55

66
This is a selection of the tools and technologies we use on a daily basis. We believe that every programming language, framework, or tool has areas where it excels and areas where it is less suitable. An important factor in our choice of tools is the sustainability and long-term availability of the technologies used.
7-
</ToolsSection>
7+
</TechnologiesSection>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const locale = currentLocale.get();
1212
const { translations } = Astro.props;
1313
const { Content: SpotlightSection } = await render(await getEntry("sections", `${locale}/spotlight`)!);
1414
const { Content: ServicesSection } = await render(await getEntry("sections", `${locale}/services`)!);
15-
const { Content: ToolsSection } = await render(await getEntry("sections", `${locale}/tools`)!);
15+
const { Content: TechnologiesSection } = await render(await getEntry("sections", `${locale}/technologies`)!);
1616
const { Content: ReferencesSection } = await render(await getEntry("sections", `${locale}/references`)!);
1717
const { Content: QuestionsSection } = await render(await getEntry("sections", `${locale}/questions`)!);
1818
---
@@ -29,7 +29,7 @@ const { Content: QuestionsSection } = await render(await getEntry("sections", `$
2929
<Divider kind="single" firstSegmentColor="var(--color-white)" fixAntialiasingBottom />
3030
<ServicesSection />
3131
<Divider kind="single" firstSegmentColor="var(--color-white)" flipVertical fixAntialiasingTop />
32-
<ToolsSection />
32+
<TechnologiesSection />
3333
<Divider kind="single" firstSegmentColor="var(--color-white)" fixAntialiasingBottom />
3434
<ReferencesSection />
3535
<Divider kind="single" firstSegmentColor="var(--color-white)" flipVertical fixAntialiasingTop />

0 commit comments

Comments
 (0)