some small stuff, worth ignoring for sure

This commit is contained in:
2025-01-20 23:01:41 -05:00
parent e0688a1406
commit f0ed5ab8bb
20 changed files with 89 additions and 12 deletions

View File

@@ -3,12 +3,12 @@ import { PlusCircleIcon } from "@heroicons/react/20/solid";
import Image from "next/image";
import Link from "next/link";
import { TestProductPage } from "../../app/components/TestProductPage";
import { TestProductPage } from "@src/app/components/TestProductPage";
export default async function SortTable(props: any) {
return (
<div className="pb-12">
<div className="mt-8 flow-root">
<div className="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
<div className="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8">
@@ -130,11 +130,11 @@ export default async function SortTable(props: any) {
<td style={{display:'none'}}>
<TestProductPage data={item}></TestProductPage>
</td>
</tr>
</tr>
))}
</tbody>
</table>
</div>
</div>
</div>

View File

@@ -12,7 +12,7 @@ const navigation = {
{ name: 'Users', href: '/Admin/Users' },
],
account: [
{ name: 'Accounts', href: '/Accounts' },
{ name: 'Accounts', href: '/Admin/Accounts' },
{ name: 'My Account', href: '/MyAccount' },
{ name: 'Register', href: '/signin' },
{ name: 'Guides', href: '/Guides' },