mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-19 08:28:10 +02:00
11 lines
339 B
TypeScript
11 lines
339 B
TypeScript
|
|
// Shared reassurance line shown beneath every lead-form submit. A small,
|
||
|
|
// consistent trust signal — keeps the promise identical across all forms.
|
||
|
|
|
||
|
|
export function FormTrustLine() {
|
||
|
|
return (
|
||
|
|
<p className="text-center text-xs text-muted-foreground">
|
||
|
|
Average response: under 10 minutes during business hours.
|
||
|
|
</p>
|
||
|
|
);
|
||
|
|
}
|