first commit

This commit is contained in:
2026-01-17 14:17:42 +05:30
commit 0f194eb9e7
328 changed files with 73544 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
import { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Shopping Cart - Padmaaja Rasooi | Review Your Premium Rice Products',
description: 'Review your selected premium rice products in your shopping cart. Secure checkout for the finest quality rice varieties from Padmaaja Rasooi.',
keywords: ['shopping cart', 'padmaaja rasooi', 'rice products', 'checkout', 'premium rice', 'secure shopping', 'cart review', 'order summary'],
openGraph: {
title: 'Shopping Cart - Padmaaja Rasooi',
description: 'Review your selected premium rice products and proceed to secure checkout.',
type: 'website',
images: ['/cart-icon.png'],
},
twitter: {
card: 'summary',
title: 'Shopping Cart - Padmaaja Rasooi',
description: 'Review your selected premium rice products and proceed to secure checkout.',
},
robots: {
index: false, // Don't index cart pages
follow: true,
noarchive: true,
nosnippet: true,
},
alternates: {
canonical: '/cart',
},
other: {
'cart-page': 'true',
'secure-checkout': 'enabled',
'page-type': 'ecommerce-cart',
},
}
export default function CartLayout({
children,
}: {
children: React.ReactNode
}) {
const jsonLd = {
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Shopping Cart - Padmaaja Rasooi",
"description": "Review your selected premium rice products and proceed to secure checkout.",
"url": "/cart",
"isPartOf": {
"@type": "WebSite",
"name": "Padmaaja Rasooi",
"url": "/"
},
"potentialAction": {
"@type": "CheckoutAction",
"target": "/checkout"
}
}
return (
<>
{/* Enhanced structured data for cart */}
<script
type="application/ld+json"
dangerouslySetInnerHTML={{
__html: JSON.stringify(jsonLd).replace(/</g, '\\u003c')
}}
/>
<main role="main" aria-label="Shopping Cart">
<div className="cart-container" itemScope itemType="https://schema.org/ShoppingCart">
<header className="sr-only">
<h1>Shopping Cart</h1>
</header>
<section aria-label="Cart items">
{children}
</section>
</div>
</main>
</>
)
}