Files
maybe/app/views/layouts/shared/_footer.html.erb
Zach Gollwitzer a51c4d2cba New onboarding, trials, Stripe integration (#2185)
* New onboarding, trials, Stripe integration

* Fix tests

* Lint fixes

* Fix subscription endpoints
2025-05-01 16:47:14 -04:00

11 lines
449 B
Plaintext

<footer class="p-6">
<div class="space-y-2 text-center text-xs text-secondary">
<p>&copy; <%= Date.current.year %>, Maybe Finance, Inc.</p>
<div class="flex justify-center items-center gap-2">
<%= link_to "Privacy Policy", privacy_path, class: "text-secondary", target: "_blank" %>
<span>&bull;</span>
<%= link_to "Terms of Service", terms_path, class: "text-secondary", target: "_blank" %>
</div>
</div>
</footer>