mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
removed chakra
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import { Button } from "@components/ui/button";
|
||||
import { getARTriggers} from "@queries/PSA";
|
||||
import { psa } from '@db/schema/Psa';
|
||||
import partTypes from 'src/data/parts_cats.json';
|
||||
@@ -29,7 +28,7 @@ export default async function TriggersPage() {
|
||||
<td className='text-slate-800'>{psa.modelnumber}</td>
|
||||
<td className='text-slate-800 flex items-center gap-2'>
|
||||
${Number(psa.salePrice).toFixed(2)}
|
||||
<Button variant="outline">Buy</Button>
|
||||
<button>Buy</button>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { Button } from "@components/ui/button";
|
||||
import { getPSA, getUpperReciever } from "@queries/PSA";
|
||||
import { psa } from '@db/schema/Psa';
|
||||
import styles from '../styles.module.css';
|
||||
@@ -28,7 +27,7 @@ export default async function UpperReceiverPage() {
|
||||
<td className='text-slate-800'>{psa.modelnumber}</td>
|
||||
<td className='text-slate-800 flex items-center gap-2'>
|
||||
${Number(psa.salePrice).toFixed(2)}
|
||||
<Button variant="outline">Buy</Button>
|
||||
<button >Buy</button>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Provider } from "../components/ui/provider"
|
||||
//import { Provider } from "../components/ui/provider"
|
||||
import "../styles/globals.css";
|
||||
import Navbar from "../components/Navbar";
|
||||
import PopNav from "@src/components/PopNav/page";
|
||||
@@ -13,10 +13,10 @@ export default function RootLayout(props: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html suppressHydrationWarning>
|
||||
<body className="bg-slate-200 ">
|
||||
<Provider>
|
||||
|
||||
<Navbar />
|
||||
<PopNav />
|
||||
{children}</Provider>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user