import { BenefitsSection } from "@/components/sections/home/benefits-section";
import { PageContainer } from "@/components/layout/page-container";
import { CartPageSection } from "@/components/sections/cart/cart-page-section";
import { getCart } from "@/lib/starter-data";

export default async function CartPage() {
  const cart = await getCart();

  return (
    <>
      <PageContainer className="pb-20 pt-[60px]">
        <CartPageSection cart={cart} />
      </PageContainer>
      <BenefitsSection />
    </>
  );
}
