import { Header } from "@/components/Header";
import { Hero } from "@/components/Hero";
import { About } from "@/components/About";
import { Services } from "@/components/Services";
import { Testimonials } from "@/components/Testimonials";
import { Blog } from "@/components/Blog";
import { Contact } from "@/components/Contact";
import { Footer } from "@/components/Footer";
import { WhatsAppFloat } from "@/components/WhatsAppFloat";

const Index = () => {
  // Configure o número do WhatsApp aqui
  const whatsappUrl = "https://wa.me/5511999999999";

  return (
    <div className="min-h-screen">
      <Header whatsappUrl={whatsappUrl} />
      <Hero whatsappUrl={whatsappUrl} />
      <About />
      <Services whatsappUrl={whatsappUrl} />
      <Testimonials />
      <Blog />
      <Contact whatsappUrl={whatsappUrl} />
      <Footer />
      <WhatsAppFloat whatsappUrl={whatsappUrl} />
    </div>
  );
};

export default Index;
Rolar para cima