fix(web): link "Bize Ulaşın" custom-needs button to the contact page
Some checks failed
QA Gate (P0/P1) / Test affected app (pull_request) Has been cancelled

The custom-integration / bulk-query CTA was a dead button. Wrap it in a
Link to /contact.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-27 12:49:16 +03:00
parent efd42ade4a
commit 9753d00015

View File

@@ -1325,13 +1325,15 @@ export function HomePage() {
Özel entegrasyon veya toplu sorgulama ihtiyacınız varsa bize ulaşın.
</p>
</div>
<Button
variant="outline"
className="mt-4 rounded-full border-border text-muted-foreground hover:bg-muted hover:text-foreground"
>
Bize Ulaşın
<ChevronRight className="ml-1 size-4" />
</Button>
<Link to="/contact" className="mt-4">
<Button
variant="outline"
className="rounded-full border-border text-muted-foreground hover:bg-muted hover:text-foreground"
>
Bize Ulaşın
<ChevronRight className="ml-1 size-4" />
</Button>
</Link>
</div>
</div>
</div>