feat: privacy page with translation

refactor: apply prettier conf to all files

feat: terms of use with translation
This commit is contained in:
Sonny
2023-11-19 18:58:49 +01:00
parent 5bdd42afdb
commit 6d5afee4f4
55 changed files with 725 additions and 118 deletions

View File

@@ -11,6 +11,7 @@ import { Category, Link } from "types";
import { TFunctionParam } from "types/i18next";
import LinkItem from "./LinkItem";
import styles from "./links.module.scss";
import clsx from "clsx";
export default function Links({
category,
@@ -64,7 +65,7 @@ export default function Links({
</span>
</h2>
{links.length !== 0 ? (
<ul className={styles["links"]}>
<ul className={clsx(styles["links"], "reset")}>
{links.map((link, index) => (
<LinkItem
link={link}