Files
kovakemlak-crm/src/components/site-footer.tsx
T
egecankomur 37679e83e6 init: kovakemlak-crm project scaffold
- Next.js 16 + Appwrite multi-tenant emlak CRM
- Database: kovakemlak-db (properties, customers, customer_searches, property_matches, presentations, investors, activities, tenant_settings)
- Same stack as isletmem-kovakcrm (shadcn/ui template base)
- Modules: portföy, müşteri takibi, arama kriterleri, otomatik eşleştirme, sunum linki, yatırımcı portalı
2026-05-05 04:37:04 +03:00

35 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Link from "next/link"
export function SiteFooter() {
const year = new Date().getFullYear()
return (
<footer className="bg-background border-t">
<div className="px-4 py-4 lg:px-6">
<div className="text-muted-foreground flex flex-col items-center justify-between gap-2 text-xs sm:flex-row">
<p>
© {year} İşletmem bir{" "}
<Link
href="https://kovaksoft.com"
target="_blank"
rel="noopener noreferrer"
className="text-foreground hover:text-primary font-medium transition-colors"
>
KovakSoft
</Link>{" "}
ürünüdür.
</p>
<div className="flex items-center gap-3">
<Link href="#" className="hover:text-foreground transition-colors">
Kullanım şartları
</Link>
<span aria-hidden>·</span>
<Link href="#" className="hover:text-foreground transition-colors">
Gizlilik
</Link>
</div>
</div>
</div>
</footer>
)
}