mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
small stuf. grip page and nav
This commit is contained in:
@@ -18,7 +18,8 @@ export default async function GripsPage() {
|
||||
<th className='bg-slate-700 pl-2 w-40'>Component</th>
|
||||
<th className='bg-slate-700 w-40'>Manufacturer</th>
|
||||
<th className='bg-slate-700 w-40'>Model #</th>
|
||||
<th className='bg-slate-700 w-20'>Price</th>
|
||||
<th className='bg-slate-700 w-20'>Retail Price</th>
|
||||
<th className='bg-slate-700 w-20'>Sale Price</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -27,9 +28,10 @@ export default async function GripsPage() {
|
||||
<td className='text-slate-800 pl-2'>{psa.category}</td>
|
||||
<td className='text-slate-800'>{psa.brandName}</td>
|
||||
<td className='text-slate-800'>{psa.modelnumber}</td>
|
||||
<td className='text-slate-800'>{psa.retailPrice}</td>
|
||||
<td className="text-slate-800 flex items-center gap-2">
|
||||
${Number(psa.salePrice).toFixed(2)}
|
||||
<Button variant="outline">Buy</Button>
|
||||
<Button variant="default">Buy</Button>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
|
||||
@@ -19,11 +19,13 @@ export default async function LowerReceiverPage() {
|
||||
}
|
||||
>
|
||||
<thead>
|
||||
<tr className={styles.tr}>
|
||||
<tr >
|
||||
<th>Component</th>
|
||||
<th>Manufacturer</th>
|
||||
<th>Model #</th>
|
||||
<th>Price</th>
|
||||
<th>Sale Price</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -32,6 +34,7 @@ export default async function LowerReceiverPage() {
|
||||
<td>{psa.category}</td>
|
||||
<td>{psa.brandName}</td>
|
||||
<td>{psa.modelnumber}</td>
|
||||
<td>{psa.retailPrice}</td>
|
||||
<td className="flex items-center gap-2">
|
||||
${Number(psa.salePrice).toFixed(2)}
|
||||
{/* I dont think this is exactly correct but works for now? */}
|
||||
|
||||
Reference in New Issue
Block a user