Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola R. Hristov <[email protected]>
  • Loading branch information
NikolaRHristov committed Apr 9, 2024
1 parent c924ba6 commit e9a1759
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions Source/pages/[Slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,15 @@ import Base from "@Layout/Base.astro";
import "@Stylesheet/Component/Article.css";
export const Capitalize = (Text: string) =>
Text.replace(/\b\w/g, (Text) => Text.toUpperCase());
export const getStaticPaths = async () =>
[
"terms-of-service",
"gdpr",
"privacy-policy",
"personal-data-protection-policy",
"Terms-Of-Service",
"Gdpr",
"Privacy-Policy",
"Personal-Data-Protection-Policy",
"TERMS-OF-SERVICE",
"GDPR",
"PRIVACY-POLICY",
"PERSONAL-DATA-PROTECTION-POLICY",
].map((Slug) => ({
params: { Slug },
}));
Expand Down

0 comments on commit e9a1759

Please sign in to comment.