fix: checkout page polish, metadata, and typescript fixes

This commit is contained in:
Usman Baig
2026-03-26 21:31:56 +01:00
parent 58ac7b9cc5
commit 6be8952fbe
2 changed files with 11 additions and 3 deletions

8
app/checkout/layout.tsx Normal file
View File

@@ -0,0 +1,8 @@
export const metadata = {
title: 'Checkout — Pulse',
robots: 'noindex, nofollow',
}
export default function CheckoutLayout({ children }: { children: React.ReactNode }) {
return children
}