Update src/app/page.tsx

This commit is contained in:
2026-03-07 11:47:44 +00:00
parent 6c5acf6825
commit 2058d0df6f

View File

@@ -12,6 +12,14 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import { Zap, Star, Globe, Telescope, Clock, Lightbulb, Twitter, Github, Linkedin } from 'lucide-react';
export default function LandingPage() {
const handleFaqButtonClick = () => {
console.log('FAQ Button clicked');
};
const handleFooterSocialClick = (platform: string) => {
console.log(`${platform} clicked`);
};
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -191,6 +199,10 @@ export default function LandingPage() {
useInvertedBackground={false}
animationType="smooth"
faqsAnimation="blur-reveal"
buttons={[
{ text: "Learn More", onClick: handleFaqButtonClick },
{ text: "Get Started", onClick: handleFaqButtonClick }
]}
/>
</div>