import { Navigation } from "@/components/navigation"
import { Hero } from "@/components/hero"
import { ServicesPreview } from "@/components/services-preview"
import { FeaturedProjects } from "@/components/featured-projects"
import { FeaturedPosts } from "@/components/featured-posts"
import { MyStack } from "@/components/my-stack"
import { AboutPreview } from "@/components/about-preview"
import { ContactPreview } from "@/components/contact-preview"
import { Footer } from "@/components/footer"

export default function Home() {
  return (
    <main className="min-h-screen">
      <Navigation />
      <Hero />
      <ServicesPreview />
      <FeaturedProjects />
      <MyStack />
      <AboutPreview />
      <FeaturedPosts />
      <ContactPreview />
      <Footer />
    </main>
  )
}
