diff --git a/src/app/Builder/page.tsx b/src/app/Builder/page.tsx index 5bdbb47..a51cb17 100644 --- a/src/app/Builder/page.tsx +++ b/src/app/Builder/page.tsx @@ -1,9 +1,38 @@ +import { Button } from "@/components/ui/button" + export default function BuilderPage() { return ( -
-

About Us

-

This is the about page.

-
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ComponentSelectionBase PriceSale PriceShippingTaxTotal PriceSourceOrder
Part 1Part99.9989.9912.99Palmetto State101.99
+
); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 8a0a1d0..1212734 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,13 +4,11 @@ import FeaturesSection from "../components/FeaturesSection"; import Footer from "../components/Footer "; import Header from "../components/Header"; import Hero from "../components/Hero"; -import Navbar from "../components/Navbar"; export default async function Home() { return (
-
diff --git a/src/components/FeaturesSection/index.tsx b/src/components/FeaturesSection/index.tsx index 6fa895d..9103e4e 100644 --- a/src/components/FeaturesSection/index.tsx +++ b/src/components/FeaturesSection/index.tsx @@ -9,19 +9,19 @@ export default function FeaturesSection() {

Features

-

Extensive Database

+

Extensive Database

Access thousands of firearm parts from trusted resellers.

-

Compatibility Checker

+

Compatibility Checker

Ensure every part works perfectly together.

-

Save & Share Builds

+

Save & Share Builds

Save your builds or share them with friends.

diff --git a/src/data/arComponents.tsx b/src/data/arComponents.tsx new file mode 100644 index 0000000..704a05a --- /dev/null +++ b/src/data/arComponents.tsx @@ -0,0 +1,13 @@ +const dataset: { component: string; }[] = [ + { + component: "Upper Receiver", + }, + { + component: "Barrel", + }, + { + component: "Muzzle Device", + }, + ]; + + export default dataset; \ No newline at end of file