2 Commits

Author SHA1 Message Date
7e6b7c1939 Update src/app/page.tsx 2026-03-20 05:52:47 +00:00
10529c7abc Merge version_1 into main
Merge version_1 into main
2026-03-19 15:46:54 +00:00

View File

@@ -14,6 +14,10 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import { Terminal, Globe, BookOpen, Lock, Trophy, Rocket, Zap, Star, CreditCard, Mail, HelpCircle, Sparkles } from 'lucide-react';
export default function LandingPage() {
const handleEmailSubmit = (email: string) => {
console.log('Email submitted:', email);
};
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -253,6 +257,7 @@ export default function LandingPage() {
inputPlaceholder="Enter your email"
buttonText="Start Your Lab Access"
termsText="By clicking Start Your Lab Access, you agree to our Terms and Conditions. We respect your privacy and will never spam your email."
onSubmit={handleEmailSubmit}
ariaLabel="Contact and signup section"
/>
</div>