feat: add privacy policy

This commit is contained in:
Samuel 2025-01-23 16:35:37 +01:00
parent b854a6b6cb
commit b69d48d3aa
5 changed files with 104 additions and 3 deletions

View file

@ -4,5 +4,5 @@ import clsx from "clsx";
export const A: Component<AnchorProps> = (props) => {
const [local, other] = splitProps(props, ["class"]);
return <BaseA class={clsx("text-primary", local.class)} {...other} />;
return <BaseA class={clsx("text-accent-foreground", local.class)} {...other} />;
};