'use client';

import { Header } from '@/components/header';
import { AboutSection } from '@/components/about-section';
import { ArchitectureSection } from '@/components/architecture-section';
import { FeaturesSection } from '@/components/features-section';
import { AIGuideSection } from '@/components/ai-guide-section';
import { MSWMocksSection } from '@/components/msw-mocks-section';
import { VisualizationSection } from '@/components/visualization-section';
import { TerminalSection } from '@/components/terminal-section';
import { GetStartedSection } from '@/components/get-started-section';
import { Footer } from '@/components/footer';

export default function Home() {
  return (
    <main className="min-h-screen bg-gradient-to-b from-amber-50 to-orange-50 overflow-x-hidden">
      <Header />
      <AboutSection />
      <ArchitectureSection />
      <FeaturesSection />
      <AIGuideSection />
      <MSWMocksSection />
      <VisualizationSection />
      <TerminalSection />
      <GetStartedSection />
      <Footer />
    </main>
  );
}
