Update src/app/page.tsx

This commit is contained in:
2026-06-12 08:59:24 +00:00
parent 414f34cab6
commit 075c1c956f

View File

@@ -285,9 +285,9 @@ export default function LandingPage() {
{
items: [
{
label: "Privacy Policy", href: "#"},
label: "Privacy Policy", onClick: () => console.log('Privacy Policy clicked')},
{
label: "Terms of Service", href: "#"},
label: "Terms of Service", onClick: () => console.log('Terms of Service clicked')},
],
},
]}
@@ -297,4 +297,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}