Files
bewell-in-ua/app/[locale]/(root)/(shop)/checkout/page.tsx
2025-02-05 08:01:14 +02:00

13 lines
235 B
TypeScript

import {Metadata} from 'next'
export const metadata: Metadata = {
title: 'Checkout'
}
export default function CheckoutPage() {
//throw new Error('NOT IMPLEMENTED')
//const session = await auth()
return <div>CheckoutPage</div>
}