add ToS and privacy policy

This commit is contained in:
tusharmagar 2026-01-20 15:00:22 +05:30
parent c0efa3329a
commit a89561db9a

View file

@ -75,6 +75,25 @@ export function HelpPopover({ children, tooltip }: HelpPopoverProps) {
</div>
</Button>
</div>
<div className="px-4 py-3 border-t flex justify-center gap-3 text-xs text-muted-foreground">
<a
href="https://www.rowboatlabs.com/terms-of-service"
target="_blank"
rel="noopener noreferrer"
className="hover:text-foreground transition-colors"
>
Terms of Service
</a>
<span>·</span>
<a
href="https://www.rowboatlabs.com/privacy-policy"
target="_blank"
rel="noopener noreferrer"
className="hover:text-foreground transition-colors"
>
Privacy Policy
</a>
</div>
</PopoverContent>
</Popover>
)