diff --git a/src/app/Armory/page.tsx b/src/app/Armory/page.tsx
new file mode 100644
index 0000000..92406b1
--- /dev/null
+++ b/src/app/Armory/page.tsx
@@ -0,0 +1,55 @@
+import { NextPage } from "next";
+
+export default function ArmoryPage() {
+ return (
+
+
AR-15 Builder
+
+ Select components to build your custom AR-15.
+
+
+
+
+
+
+ | 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} |
+
+
+ |
+ - |
+ - |
+ - |
+ - |
+
+ ))}
+
+
+
+
+ );
+}
diff --git a/src/app/Builder/layout.tsx b/src/app/Builder/layout.tsx
deleted file mode 100644
index b5f2157..0000000
--- a/src/app/Builder/layout.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-export const metadata = {
- title: 'Ballistic Builder',
- description: 'Generated by Forward Group, LLC',
-}
-
-export default function RootLayout({
- children,
-}: {
- children: React.ReactNode
-}) {
- return (
-
- {children}
-
- )
-}
diff --git a/src/app/Products/lowers/page.tsx b/src/app/Products/lowers/page.tsx
index 35a16d4..5d6ee24 100644
--- a/src/app/Products/lowers/page.tsx
+++ b/src/app/Products/lowers/page.tsx
@@ -7,8 +7,8 @@ export default async function LowerReceiverPage() {
const psa = await getLowerBuildKits();
return (
-
-
+
+
| Component |
@@ -25,7 +25,7 @@ export default async function LowerReceiverPage() {
{psa.modelnumber} |
${Number(psa.salePrice).toFixed(2)}
-
+
|
))}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b63e652..aef6217 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,8 +1,7 @@
import { Provider } from "../components/ui/provider"
import "../styles/globals.css";
import Navbar from "../components/Navbar";
-
-
+import PopNav from "@src/components/PopNav/page";
export const metadata = {
title: 'Ballistic Builder',
description: 'Freedom On',
@@ -16,6 +15,7 @@ export default function RootLayout(props: { children: React.ReactNode }) {
+
{children}