-
)
diff --git a/src/app/(siteInfo)/Disclosure/page.tsx b/src/app/(siteInfo)/Disclosure/page.tsx
index c1f1611..ed43dd3 100644
--- a/src/app/(siteInfo)/Disclosure/page.tsx
+++ b/src/app/(siteInfo)/Disclosure/page.tsx
@@ -13,7 +13,6 @@ export default function Disclosure() {
and exploring firearm parts. Designed for enthusiasts by
enthusiasts, we make firearm building easy and accessible.
-
)
diff --git a/src/app/(siteInfo)/Footer/page.tsx b/src/app/(siteInfo)/Footer/page.tsx
index 44ff5ea..52c64a3 100644
--- a/src/app/(siteInfo)/Footer/page.tsx
+++ b/src/app/(siteInfo)/Footer/page.tsx
@@ -8,7 +8,6 @@ export default function Footer() {
)
diff --git a/src/app/(siteInfo)/Jobs/page.tsx b/src/app/(siteInfo)/Jobs/page.tsx
index 09a4ef3..2c6a5f5 100644
--- a/src/app/(siteInfo)/Jobs/page.tsx
+++ b/src/app/(siteInfo)/Jobs/page.tsx
@@ -13,7 +13,6 @@ export default function Jobs() {
and exploring firearm parts. Designed for enthusiasts by
enthusiasts, we make firearm building easy and accessible.
-
)
diff --git a/src/app/(siteInfo)/Press/page.tsx b/src/app/(siteInfo)/Press/page.tsx
index 6d3dc4e..6bbd2a2 100644
--- a/src/app/(siteInfo)/Press/page.tsx
+++ b/src/app/(siteInfo)/Press/page.tsx
@@ -13,7 +13,6 @@ export default function About() {
and exploring firearm parts. Designed for enthusiasts by
enthusiasts, we make firearm building easy and accessible.
-
)
diff --git a/src/app/(siteInfo)/TOS/page.tsx b/src/app/(siteInfo)/TOS/page.tsx
index 7357065..fcbd80b 100644
--- a/src/app/(siteInfo)/TOS/page.tsx
+++ b/src/app/(siteInfo)/TOS/page.tsx
@@ -13,7 +13,6 @@ export default function TOS() {
and exploring firearm parts. Designed for enthusiasts by
enthusiasts, we make firearm building easy and accessible.
-
)
diff --git a/src/app/Accounts/page.tsx b/src/app/Accounts/page.tsx
index e4a074c..fe76d6e 100644
--- a/src/app/Accounts/page.tsx
+++ b/src/app/Accounts/page.tsx
@@ -1,19 +1,29 @@
import { accounts } from "@schemas/schema";
-import { getData } from "@actions/accountActions";
-import Account from "@components/Account"; // Adjust the import path as necessary
-import React from 'react';
+import { getViewAccounts } from "@actions/accountActions";
+import AccountsTable from "@src/components/AccountsTable"; // Adjust the import path as necessary
+import React, { Suspense } from 'react';
+import { ColumnHeadings } from "@src/lib/utils";
+import PageHero from "@src/components/PageHero";
-export interface AccountProps {
- account: any; // Adjust the type according to your data structure
-}
export default async function AccountsPage() {
- const data = await getData();
+ const columnHeadings = new ColumnHeadings([
+ "First Name",
+ "Last Name",
+ "Actions",
+ ]);
+ const data = await getViewAccounts();
return (
-