-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa2c2e1
commit 28b25f2
Showing
26 changed files
with
159 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,7 @@ const UserMenu = ({ | |
</a> | ||
</li> | ||
<li> | ||
<a href="/en"> | ||
<a href="/"> | ||
<svg | ||
width="32" | ||
height="32" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Cookie_Policy", "en"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section set:html={content.Cookie_Policy} /> | ||
</LegalLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Privacy_Policy", "en"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section class="legal__content" set:html={content.Privacy_Policy} /> | ||
</LegalLayout> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Cookie_Policy", "de"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section set:html={content.Cookie_Policy} /> | ||
</LegalLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Privacy_Policy", "de"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section class="legal__content" set:html={content.Privacy_Policy} /> | ||
</LegalLayout> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Legal_Notice", "de"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section set:html={content.legal_notice} /> | ||
</LegalLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Terms_Conditions", "de"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section set:html={content.Terms_Conditions} /> | ||
</LegalLayout> | ||
|
||
<style> | ||
section { | ||
text-wrap: wrap; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
--- | ||
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"; | ||
import Layout from "@layouts/Layout.astro"; | ||
import TargetUser from "@views/TargetUser/TargetUser.astro"; | ||
import Features from "@views/Features/Features.astro"; | ||
import Feedback from "@views/Feedback/Feedback.astro"; | ||
import AboutUs from "@views/AboutUs/AboutUs.astro"; | ||
--- | ||
|
||
<meta http-equiv="refresh" content="0;url=/en" /> | ||
<Layout title="scrumlr.io - Online collaboration" lang="en" > | ||
<Hero lang="en" /> | ||
<Choices lang="en" /> | ||
<Uniqueness lang="en" /> | ||
<Mobile lang="en" /> | ||
<Features lang="en" /> | ||
<TargetUser lang="en" /> | ||
<Feedback lang="en" /> | ||
<AboutUs lang="en" /> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Legal_Notice", "en"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section set:html={content.legal_notice} /> | ||
</LegalLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
import LegalLayout from "@layouts/LegalLayout.astro"; | ||
import getTranslatedContent from "@utils/directus.ts"; | ||
import "@styles/Legal.scss"; | ||
const content = await getTranslatedContent("Terms_Conditions", "en"); | ||
--- | ||
|
||
<LegalLayout> | ||
<section set:html={content.Terms_Conditions} /> | ||
</LegalLayout> | ||
|
||
<style> | ||
section { | ||
text-wrap: wrap; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.