Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e362810408 | |||
| 7506adb63b |
@@ -10,7 +10,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Calendar, Zap, Lightbulb, Home, Sun, TrendingUp, HelpCircle, Mail } from 'lucide-react';
|
||||
import { Calendar, Zap, Lightbulb, Home, Sun, TrendingUp, HelpCircle, Mail, MessageCircle } from 'lucide-react';
|
||||
import { useState } from 'react';
|
||||
import Input from '@/components/form/Input';
|
||||
|
||||
@@ -34,6 +34,11 @@ export default function LandingPage() {
|
||||
|
||||
const savings = calculateSavings();
|
||||
|
||||
const handleWhatsAppClick = () => {
|
||||
const message = encodeURIComponent('Olá! Gostaria de saber mais sobre energia solar fotovoltaica.');
|
||||
window.open(`https://wa.me/5515988033907?text=${message}`, '_blank');
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -123,15 +128,32 @@ export default function LandingPage() {
|
||||
<p className="text-xs text-foreground opacity-60 mt-4 text-center">
|
||||
*Estimativa baseada em 70% de redução com sistemas solares Eletrotech. Consulte nossos especialistas para análise personalizada.
|
||||
</p>
|
||||
<div className="mt-6 flex gap-3">
|
||||
<button
|
||||
onClick={handleWhatsAppClick}
|
||||
className="flex-1 py-3 px-4 bg-primary-cta text-primary-cta-text rounded-lg font-medium hover:opacity-90 transition-opacity flex items-center justify-center gap-2"
|
||||
>
|
||||
<MessageCircle size={18} />
|
||||
Contato WhatsApp
|
||||
</button>
|
||||
<button
|
||||
onClick={() => setShowCalculator(false)}
|
||||
className="flex-1 py-3 px-4 bg-secondary-cta text-secondary-cta-text rounded-lg font-medium hover:opacity-90 transition-opacity border border-accent"
|
||||
>
|
||||
Fechar
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<button
|
||||
onClick={() => setShowCalculator(false)}
|
||||
className="w-full py-3 px-4 bg-primary-cta text-primary-cta-text rounded-lg font-medium hover:opacity-90 transition-opacity"
|
||||
>
|
||||
Fechar Calculadora
|
||||
</button>
|
||||
{!savings && billValue && (
|
||||
<button
|
||||
onClick={() => setShowCalculator(false)}
|
||||
className="w-full py-3 px-4 bg-secondary-cta text-secondary-cta-text rounded-lg font-medium hover:opacity-90 transition-opacity border border-accent"
|
||||
>
|
||||
Fechar Calculadora
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
@@ -260,7 +282,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Vamos Conversar"
|
||||
title="Solicite seu Orçamento"
|
||||
description="Entre em contato conosco para avaliar sua propriedade e receber uma proposta personalizada de energia solar. Nossa equipe está pronta para responder suas dúvidas."
|
||||
description="Entre em contato conosco para avaliar sua propriedade e receber uma proposta personalizada de energia solar. Nossa equipe está pronta para responder suas dúvidas. WhatsApp: (15) 98803-3907"
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
useInvertedBackground={false}
|
||||
@@ -295,7 +317,7 @@ export default function LandingPage() {
|
||||
title: "Legal", items: [
|
||||
{ label: "Política de Privacidade", href: "#" },
|
||||
{ label: "Termos de Serviço", href: "#" },
|
||||
{ label: "Telefone", href: "#" },
|
||||
{ label: "(15) 98803-3907", href: "https://wa.me/5515988033907" },
|
||||
{ label: "Sorocaba, SP", href: "#" }
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user