// src/app/(root)/cart/page.tsx
import { Metadata } from 'next';
import CartClient from './CartClient';

export const metadata: Metadata = {
  title: 'Shopping Cart | OutreachExpert',
  description: 'Review your selected websites and publishing opportunities. Manage quantities, upload content, and proceed to secure checkout.',
  keywords: 'shopping cart, website orders, content publishing, SEO backlinks',
  openGraph: {
    title: 'Your Shopping Cart | OutreachExpert',
    description: 'Review and manage your website orders before checkout',
    type: 'website',
    url: `${process.env.NEXT_PUBLIC_APP_URL}/cart`,
  },
  twitter: {
    card: 'summary_large_image',
    title: 'Shopping Cart | OutreachExpert',
    description: 'Review your selected items and proceed to checkout',
  },
};

export default function CartPage() {
  return <CartClient />;
}