-
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
Showing
12 changed files
with
106 additions
and
19 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
import { fetchPolicy } from "~/helpers/helpers"; | ||
import ProseLayout from "~/layouts/ProseLayout.astro"; | ||
const content = await fetchPolicy("abuse"); | ||
--- | ||
|
||
<ProseLayout | ||
title="Use Restrictions Policy" | ||
description="It is not okay to use Namesake for these restricted purposes." | ||
color="brown" | ||
> | ||
<article set:html={content} /> | ||
</ProseLayout> |
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,14 @@ | ||
--- | ||
import { fetchPolicy } from "~/helpers/helpers"; | ||
import ProseLayout from "~/layouts/ProseLayout.astro"; | ||
const content = await fetchPolicy("privacy"); | ||
--- | ||
|
||
<ProseLayout | ||
title="Privacy" | ||
description="The privacy of your data—and it is your data, not ours!—is a big deal to us. Here’s the rundown of what we collect and why, when we access your information, and your rights." | ||
color="brown" | ||
> | ||
<article set:html={content} /> | ||
</ProseLayout> |
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,14 @@ | ||
--- | ||
import { fetchPolicy } from "~/helpers/helpers"; | ||
import ProseLayout from "~/layouts/ProseLayout.astro"; | ||
const content = await fetchPolicy("subprocessors"); | ||
--- | ||
|
||
<ProseLayout | ||
title="Subprocessors" | ||
description="All the third-party subprocessors that we use to run Namesake." | ||
color="brown" | ||
> | ||
<article set:html={content} /> | ||
</ProseLayout> |
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,14 @@ | ||
--- | ||
import { fetchPolicy } from "~/helpers/helpers"; | ||
import ProseLayout from "~/layouts/ProseLayout.astro"; | ||
const content = await fetchPolicy("terms"); | ||
--- | ||
|
||
<ProseLayout | ||
title="Terms of Service" | ||
description="All the terms that you agree to when you sign up for Namesake." | ||
color="brown" | ||
> | ||
<article set:html={content} /> | ||
</ProseLayout> |