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 ( -
This is the about page.
-| Component | +Selection | +Base Price | +Sale Price | +Shipping | +Tax | +Total Price | +Source | +Order | +
|---|---|---|---|---|---|---|---|---|
| Part 1 | +Part | +99.99 | +89.99 | +12.99 | ++ | Palmetto State | +101.99 | ++ |
Access thousands of firearm parts from trusted resellers.
Ensure every part works perfectly together.
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