import { getCart } from "@/lib/sfcc";
import { CartItem } from "@/lib/sfcc/types";
import { ShoppingCart } from "lucide-react";
import Image from "next/image";
import Link from "next/link";
import Price from "../price";
import { buttonVariants } from "../ui/button";
import { Separator } from "../ui/separator";
export async function CheckoutCart() {
const cart = await getCart();
if (!cart || cart.lines.length === 0) {
return
Your cart is empty
Looks like you haven't added any items to your cart yet.
Continue Shopping{line.merchandise.product.description}
*/}