small stuf. grip page and nav

This commit is contained in:
2024-12-13 06:30:12 -05:00
parent b2e2893b4b
commit cd0a2dedc3
4 changed files with 14 additions and 17 deletions

View File

@@ -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>
))}

View File

@@ -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? */}