Files
ballistic-builder/src/app/Builder/page.tsx

39 lines
962 B
TypeScript
Raw Normal View History

import { Button } from "src/components/ui/button";
2024-11-22 14:54:28 -05:00
2024-11-22 10:01:33 -05:00
export default function BuilderPage() {
return (
2024-12-11 16:33:55 -05:00
<div className="container mx-auto ">
<table className="table-auto border-separate border-spacing-2 border border-slate-500 text-gray-900">
2024-11-22 14:54:28 -05:00
<thead>
<tr>
<th>Component</th>
<th>Selection</th>
<th>Base Price</th>
<th>Sale Price</th>
<th>Shipping</th>
<th>Tax</th>
<th>Total Price</th>
<th>Source</th>
<th>Order</th>
</tr>
</thead>
<tbody>
<tr>
<td>Part 1</td>
<td>Part</td>
<td>99.99</td>
<td>89.99</td>
<td>12.99</td>
<td></td>
<td>Palmetto State</td>
<td>101.99</td>
<td><Button>Buy Item</Button></td>
</tr>
</tbody>
</table>
</div>
2024-11-22 10:01:33 -05:00
);
}