import { Header } from "@/components/header"
import { Footer } from "@/components/footer"
import { AboutHeroSection } from "@/components/about-hero-section"
import { CompanyStorySection } from "@/components/company-story-section"
import { ValuesSection } from "@/components/values-section"
import { TeamCultureSection } from "@/components/team-culture-section"
import { AchievementsSection } from "@/components/achievements-section"
import { WhyChooseAboutSection } from "@/components/why-choose-about-section"

export default function AboutPage() {
  return (
    <div className="min-h-screen bg-background">
      <Header />
      <main>
        <AboutHeroSection />
        <CompanyStorySection />
        <ValuesSection />
        <TeamCultureSection />
        <AchievementsSection />
        <WhyChooseAboutSection />
      </main>
      <Footer />
    </div>
  )
}
