diff --git a/src/app/Armory/page.tsx b/src/app/Armory/page.tsx
index 92406b1..f3d9b7a 100644
--- a/src/app/Armory/page.tsx
+++ b/src/app/Armory/page.tsx
@@ -1,8 +1,13 @@
import { NextPage } from "next";
+import PageHero from "@components/PageHero";
export default function ArmoryPage() {
return (
-
-
Products
-
-
-
Sample Lower Receiver
-
Price: $199.99
-
-
-
+
+
+
+
+
+
+
+ | Component |
+ Selection |
+ Caliber |
+ Price |
+ Shipping |
+ Where |
+
+
+
+ {[
+ "Lower Receiver",
+ "Upper Receiver",
+ "Barrel",
+ "Handguard",
+ "Bolt Carrier Group",
+ "Charging Handle",
+ "Buffer Tube",
+ "Stock",
+ "Grip",
+ "Trigger",
+ "Magazine"
+ ].map((component) => (
+
+ | {component} |
+
+
+ |
+ - |
+ - |
+ - |
+ - |
+
+ ))}
+
+
+
+
+
+
);
}
\ No newline at end of file
diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx
index 966aac4..ed2b44c 100644
--- a/src/components/Navbar/index.tsx
+++ b/src/components/Navbar/index.tsx
@@ -15,7 +15,6 @@ const navigation = [
{ name: "Armory", href: "/Armory", current: false },
{ name: "Products", href: "/Products", current: false },
{ name: "Db Data", href: "/Products/lowers", current: false },
- { name: "Completed Builds", href: "#", current: false },
{ name: "Brands", href: "/Brands", current: false },
];
diff --git a/src/components/PageHero/index.tsx b/src/components/PageHero/index.tsx
new file mode 100644
index 0000000..03f613c
--- /dev/null
+++ b/src/components/PageHero/index.tsx
@@ -0,0 +1,13 @@
+import React from 'react';
+
+interface PageHeroProps {
+ title: string;
+}
+
+export default function PageHero({ title }: PageHeroProps) {
+ return (
+
+
{title}
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/PopNav/page.tsx b/src/components/PopNav/page.tsx
index 1455409..c8cd562 100644
--- a/src/components/PopNav/page.tsx
+++ b/src/components/PopNav/page.tsx
@@ -41,7 +41,7 @@ const navigation = {
id: 'lower-parts',
name: 'Lower Parts',
items: [
- { name: 'Lower Receivers', href: '#' },
+ { name: 'Lower Receivers', href: '/Products/lowers' },
{ name: 'Grips', href: '#' },
{ name: 'Stocks', href: '#' },
{ name: 'Triggers', href: '#' },