import Navbar from "@/components/Navbar";
import HeroSection from "@/components/HeroSection";
import FeaturesGrid from "@/components/FeaturesGrid";
import AboutSection from "@/components/AboutSection";
import ServicesSection from "@/components/ServicesSection";
import HowItWorksSection from "@/components/HowItWorksSection";
import PricingSection from "@/components/PricingSection";
import BlogSection from "@/components/BlogSection";
import ContactSection from "@/components/ContactSection";
import Footer from "@/components/Footer";
import WhatsAppButton from "@/components/WhatsAppButton";
const Index = () => {
return (
<main className="font-body">
<Navbar />
<HeroSection />
<FeaturesGrid />
<AboutSection />
<ServicesSection />
<HowItWorksSection />
<PricingSection />
<BlogSection />
<ContactSection />
<Footer />
<WhatsAppButton />
</main>
);
};
export default Index;