2 Commits

Author SHA1 Message Date
405b284ffa Update src/app/page.tsx 2026-05-19 04:02:21 +00:00
2a9af8ffc0 Merge version_9 into main
Merge version_9 into main
2026-05-19 04:01:04 +00:00

View File

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