import Header from "@/components/Header";
import Hero from "@/components/Hero";
import Services from "@/components/Services";
import About from "@/components/About";
import Methodology from "@/components/Methodology";
import Pricing from "@/components/Pricing";
import Trust from "@/components/Trust";
import Contact from "@/components/Contact";
import Footer from "@/components/Footer";

const Index = () => {
  return (
    <div className="min-h-screen bg-background">
      <Header />
      <main>
        <Hero />
        <Services />
        <About />
        <Methodology />
        <Pricing />
        <Trust />
        <Contact />
      </main>
      <Footer />
    </div>
  );
};

export default Index;