Skip to content

Commit

Permalink
Rename ReachNewHeights to Hero
Browse files Browse the repository at this point in the history
  • Loading branch information
brandstetterm committed Jan 8, 2024
1 parent 793578c commit 9fe5401
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/pages/[lang]/index.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import type { GetStaticPaths } from "astro";
import ReachNewHeights from "@views/ReachNewHeights/ReachNewHeights.astro";
import Hero from "@views/Hero/Hero.astro";
import Choices from "@views/Choices/Choices.astro";
import Uniqueness from "@views/Uniqueness/Uniqueness.astro";
import Mobile from "@views/Mobile/Mobile.astro";
Expand All @@ -16,7 +16,7 @@ export const getStaticPaths = (() => {
---

<Layout title="scrumlr.io - Online collaboration">
<ReachNewHeights />
<Hero />
<Choices />
<Uniqueness />
<Mobile />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { Link } from "../../components/Link/Link";
import "./ReachNewHeights.scss";
import getTranslatedContent from "../../utils/directus";
import { Link } from "@components/Link/Link";
import getTranslatedContent from "@utils/directus";
import "./Hero.scss";
const {lang} = Astro.params;
const content = await getTranslatedContent("Hero_Section", lang!);
Expand Down
File renamed without changes.

0 comments on commit 9fe5401

Please sign in to comment.