fixed products/lower page

This commit is contained in:
2024-12-11 14:07:54 -05:00
parent 80c23f1518
commit 925cf2ca75
4 changed files with 66 additions and 17 deletions

16
src/app/Products/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
export default function ProductsPage() {
return (
<div className="container mx-auto p-4">
<h1 className="text-2xl font-bold mb-4">Products</h1>
<div className="grid gap-4">
<div className="p-4 border rounded shadow">
<h2 className="font-semibold">Sample Lower Receiver</h2>
<p>Price: $199.99</p>
<button className="mt-2 px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600">
Buy Now
</button>
</div>
</div>
</div>
);
}