diff --git a/src/app/Products/parts/page.tsx b/src/app/Products/parts/page.tsx
index 189b312..807e630 100644
--- a/src/app/Products/parts/page.tsx
+++ b/src/app/Products/parts/page.tsx
@@ -1,13 +1,18 @@
import { getARParts } from "@queries/PSA";
import styles from '../styles.module.css';
import SortTable from "@src/components/SortTable";
+import PageHero from "@src/components/PageHero";
export default async function PartsPage() {
const data = await getARParts();
return (
-
-
+
+
);
}
\ No newline at end of file
diff --git a/src/app/Products/uppers/page.tsx b/src/app/Products/uppers/page.tsx
index d555ed5..0763dbf 100644
--- a/src/app/Products/uppers/page.tsx
+++ b/src/app/Products/uppers/page.tsx
@@ -1,7 +1,7 @@
import { getUpperReciever } from "@queries/PSA";
import styles from '../styles.module.css';
import PageHero from "@src/components/PageHero";
-import ProductTable from "@src/components/ProductTable";
+import SortTable from "@src/components/SortTable";
export default async function UpperReceiverPage() {
const data = await getUpperReciever();
@@ -10,7 +10,7 @@ export default async function UpperReceiverPage() {
);
diff --git a/src/components/footer/index.tsx b/src/components/footer/index.tsx
index 59537f9..006183c 100644
--- a/src/components/footer/index.tsx
+++ b/src/components/footer/index.tsx
@@ -1,182 +1,184 @@
+import Link from "next/link"
+
const navigation = {
- armory: [
- { name: 'Builder', href: '#' },
- { name: 'Lowers', href: '#' },
- { name: 'Uppers', href: '#' },
- { name: 'Optics', href: '#' },
- { name: 'Accessories', href: '#' },
- ],
- account: [
- { name: 'My Account', href: '#' },
- { name: 'Register', href: '#' },
- { name: 'Guides', href: '#' },
- ],
- about: [
- { name: 'About', href: '#' },
- { name: 'Blog', href: '#' },
- { name: 'Jobs', href: '#' },
- { name: 'Press', href: '#' },
- ],
- legal: [
- { name: 'Terms of service', href: '#' },
- { name: 'Privacy policy', href: '#' },
- { name: 'Affiliate Disclosure', href: '#' },
- ],
- social: [
- {
- name: 'Facebook',
- href: '#',
- icon: (props:any) => (
-
- ),
- },
- {
- name: 'Instagram',
- href: '#',
- icon: (props:any) => (
-
- ),
- },
- {
- name: 'X',
- href: '#',
- icon: (props:any) => (
-
- ),
- },
- {
- name: 'YouTube',
- href: '#',
- icon: (props:any) => (
-
- ),
- },
- ],
- }
-
- export default function Footer() {
- return (
-