diff --git a/src/app/page.tsx b/src/app/page.tsx
index d95beef..ad8594d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,9 +11,26 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterCard from '@/components/sections/footer/FooterCard';
-import { CheckCircle, Clock, Instagram, Facebook, Linkedin, PhoneCall, Users, Zap } from 'lucide-react';
+import { CheckCircle, Clock, Instagram, Facebook, Linkedin, PhoneCall, Users, Zap, MapPin, Mail } from 'lucide-react';
+import { useState } from 'react';
export default function LandingPage() {
+ const [formData, setFormData] = useState({ name: '', email: '', phone: '' });
+ const [submitted, setSubmitted] = useState(false);
+
+ const handleFormSubmit = (e: React.FormEvent) => {
+ e.preventDefault();
+ // Handle form submission
+ console.log('Form submitted:', formData);
+ setSubmitted(true);
+ setTimeout(() => setSubmitted(false), 3000);
+ setFormData({ name: '', email: '', phone: '' });
+ };
+
+ const handleMapClick = () => {
+ window.open('https://www.google.com/maps/search/Plaza+San+Antón+de+Armuru+1,+Amurrio,+Álava', '_blank');
+ };
+
return (
Nos encontramos en el corazón de Amurrio. ¡Ven a visitarnos!
+Rellena este formulario y nos pondremos en contacto contigo en breve.
+ + + +