mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
fixed products/lower page
This commit is contained in:
16
src/app/Products/page.tsx
Normal file
16
src/app/Products/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user