2024-11-26 11:58:39 -05:00
|
|
|
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 14:20:08 -05:00
|
|
|
<div className="container mx-auto tactical">
|
2024-11-22 14:54:28 -05:00
|
|
|
<table className="table-auto border-separate border-spacing-2 border border-slate-500">
|
|
|
|
|
<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
|
|
|
);
|
2024-11-22 10:28:45 -05:00
|
|
|
}
|