Legal pages: privacy, terms, GDPR, contact form for enterprise. Footer links updated.

This commit is contained in:
2026-04-13 20:37:56 +02:00
parent 5712fd7872
commit 1074b31c90
5 changed files with 453 additions and 2 deletions
+4 -2
View File
@@ -174,7 +174,7 @@ function PlanCard({ plan, type }: { plan: any, type: string }) {
))}
</ul>
<Link
href={`/autojobs/signup?plan=${plan.id}&type=${type}`}
href={plan.id === "agency_enterprise" ? "/autojobs/contact" : `/autojobs/signup?plan=${plan.id}&type=${type}`}
className={`block text-center px-3 py-2 rounded-lg font-medium text-white text-xs transition mt-auto ${plan.ctaStyle}`}
>
{plan.cta}
@@ -448,10 +448,12 @@ export default function LandingPage() {
{/* Footer */}
<footer className="py-6 px-6 border-t border-slate-700">
<div className="max-w-5xl mx-auto text-center text-slate-500 text-sm">
<p>© 2026 AutoJobs Built on <a href="https://hostpioneers.com" className="text-blue-400 hover:underline">HostPioneers</a> infrastructure</p>
<p>© 2026 AutoJobs Built on <a href="https://hostpioneers.com" className="text-blue-400 hover:underline">HostPioneers</a></p>
<nav className="mt-3 flex justify-center gap-4 text-xs" aria-label="Footer navigation">
<a href="/autojobs/privacy" className="hover:text-white transition">Privacy Policy</a>
<a href="/autojobs/terms" className="hover:text-white transition">Terms of Service</a>
<a href="/autojobs/gdpr" className="hover:text-white transition">GDPR</a>
<a href="/autojobs/contact" className="hover:text-white transition">Contact</a>
</nav>
</div>
</footer>