feat(privacy, refund, terms): add Privacy Policy, Refund Policy, and Terms of Service pages with navigation links

This commit is contained in:
Yusuf İpek
2026-04-10 22:33:23 +03:00
parent 4ba7521a38
commit 20897ab418
6 changed files with 532 additions and 4 deletions
+8 -2
View File
@@ -161,6 +161,9 @@ export function LandingPage({ isLoggedIn }: LandingPageProps) {
<a className="text-muted-foreground transition-colors hover:text-foreground" href="https://github.com/yusufipk/OpenFrame" target="_blank" rel="noreferrer">
GitHub
</a>
<a className="text-muted-foreground transition-colors hover:text-foreground" href="mailto:[email protected]">
Contact
</a>
</nav>
<div className="flex items-center gap-2">
@@ -672,9 +675,12 @@ export function LandingPage({ isLoggedIn }: LandingPageProps) {
<Video className="h-4 w-4 text-primary" />
<span className="font-mono text-xs text-muted-foreground">© 2026 IPEK TECH LLC. All rights reserved.</span>
</div>
<div className="flex gap-4">
<div className="flex flex-wrap justify-center gap-4">
<a href="mailto:[email protected]" className="text-xs text-muted-foreground hover:text-foreground">info@open-frame.net</a>
<a href="https://github.com/yusufipk/OpenFrame" className="text-xs text-muted-foreground hover:text-foreground">GitHub</a>
<a href="https://x.com/yusufipk" className="text-xs text-muted-foreground hover:text-foreground">X (Twitter)</a>
<Link href="/terms" className="text-xs text-muted-foreground hover:text-foreground">Terms</Link>
<Link href="/privacy" className="text-xs text-muted-foreground hover:text-foreground">Privacy</Link>
<Link href="/refund" className="text-xs text-muted-foreground hover:text-foreground">Refund Policy</Link>
</div>
</div>
</footer>