We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a2946 commit 961f12dCopy full SHA for 961f12d
src/app/cart/page.tsx
@@ -0,0 +1,11 @@
1
+import CartTemplate from "@modules/cart/templates"
2
+import { Metadata } from "next"
3
+
4
+export const metadata: Metadata = {
5
+ title: "Shopping Bag",
6
+ description: "View your shopping bag",
7
+}
8
9
+export default function Cart() {
10
+ return <CartTemplate />
11
src/modules/cart/templates/index.tsx
@@ -1,3 +1,5 @@
+"use client"
import useEnrichedLineItems from "@lib/hooks/use-enrich-line-items"
import DiscountCode from "@modules/checkout/components/discount-code"
import SkeletonCartPage from "@modules/skeletons/templates/skeleton-cart-page"
src/pages/cart.tsx
0 commit comments