Skip to content

Commit 463430b

Browse files
committed
gdpr
1 parent f824efd commit 463430b

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

apps/docs/components/footer.tsx

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
"use client";
22

33
import Link from "next/link";
4+
import { ShieldCheckIcon } from "@phosphor-icons/react/ssr";
45
import { FaDiscord, FaGithub, FaXTwitter } from "react-icons/fa6";
56
import { IoMdMail } from "react-icons/io";
67
import { SciFiButton } from "./landing/scifi-btn";
78
import { Wordmark } from "./landing/wordmark";
89
import { LogoContent } from "./logo";
10+
import { Badge } from "./ui/badge";
911

1012
export function Footer() {
1113
return (
12-
<footer className="border-border border-t bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
14+
<footer className="border-border border-t bg-background/95 backdrop-blur supports-backdrop-filter:bg-background/60">
1315
<div className="mx-auto max-w-7xl px-4 pt-10 sm:px-6 lg:px-8">
1416
{/* CTA Section */}
1517
<div className="mb-12 text-center">
@@ -195,6 +197,19 @@ export function Footer() {
195197
>
196198
Terms of Service
197199
</Link>
200+
<span className="text-muted-foreground/50 text-xs"></span>
201+
<Link
202+
className="inline-flex items-center gap-1.5"
203+
href="/privacy#gdpr"
204+
>
205+
<Badge
206+
className="inline-flex items-center gap-1.5 border-green-200 bg-green-50 text-green-700 hover:bg-green-100 dark:border-green-800 dark:bg-green-950/50 dark:text-green-400"
207+
variant="outline"
208+
>
209+
<ShieldCheckIcon className="size-3" weight="duotone" />
210+
<span className="text-xs font-medium">GDPR Compliant</span>
211+
</Badge>
212+
</Link>
198213
</div>
199214
</div>
200215

0 commit comments

Comments
 (0)