Update src/app/page.tsx

This commit is contained in:
2026-05-19 04:02:21 +00:00
parent 2a9af8ffc0
commit 405b284ffa

View File

@@ -18,6 +18,10 @@ export default function LandingPage() {
window.location.href = "mailto:brightlinewebsolutions@gmail.com";
};
const handlePrivacyClick = () => {
window.location.href = "/privacy";
};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -177,7 +181,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Brightline Web"
leftLink={{ text: "Privacy Policy", href: "#" }}
leftLink={{ text: "Privacy Policy", onClick: handlePrivacyClick }}
rightLink={{ text: "Terms & Conditions", href: "#" }}
/>
</div>