"use client";

import { ThemeProvider } from "./contexts/ThemeContext";
import Navbar from "./components/Navbar";
import HeroSection from "./components/HeroSection";
import TodaysDealSection from "./components/TodaysDealSection";
import ProductsSection from "./components/ProductsSection";
import ServicesSection from "./components/ServicesSection";
import PartnersSection from "./components/PartnersSection";
import AboutSection from "./components/AboutSection";
// import FeaturesSection from "./components/FeaturesSection";
// import CRMSection from "./components/CRMSection";
import ContactSection from "./components/ContactSection";
import Footer from "./components/Footer";
import FeaturesSection from "./components/FeaturesSection";
import CRMSection from "./components/CRMSection";

export default function HomePage() {
  return (
    <main className="overflow-x-hidden w-full" style={{ background: 'var(--background)', transition: 'background 0.3s ease' }}>
      <HeroSection />
      <TodaysDealSection />
      <ProductsSection />
      <ServicesSection />
      <PartnersSection />
      <AboutSection />
      <FeaturesSection />
      <CRMSection />
      <ContactSection />
    </main>
  );
}
