diff --git a/app/builder/[categoryId]/page.tsx b/app/builder/[categoryId]/page.tsx index aeea750..a47ddb5 100644 --- a/app/builder/[categoryId]/page.tsx +++ b/app/builder/[categoryId]/page.tsx @@ -163,7 +163,7 @@ export default function CategoryPage() { ...prev, [categoryId]: partId, })); - router.push("/gunbuilder"); + router.push("/builder"); } }; @@ -309,7 +309,7 @@ export default function CategoryPage() { Category Not Found Return to Gunbuilder @@ -326,7 +326,7 @@ export default function CategoryPage() { {/* Header */}
← Back to The Armory @@ -670,7 +670,7 @@ export default function CategoryPage() {
View Details @@ -733,7 +733,7 @@ export default function CategoryPage() {
View Details diff --git a/app/builder/page.tsx b/app/builder/page.tsx index f070fb9..7107a21 100644 --- a/app/builder/page.tsx +++ b/app/builder/page.tsx @@ -175,7 +175,7 @@ export default function GunbuilderPage() { return updated; }); - router.replace("/gunbuilder", { scroll: false }); + router.replace("/builder", { scroll: false }); } } }, [searchParams, router]); @@ -223,7 +223,7 @@ export default function GunbuilderPage() { const payload = JSON.stringify(build); const encoded = window.btoa(payload); const origin = window.location?.origin ?? ""; - const url = `${origin}/gunbuilder/build?build=${encodeURIComponent( + const url = `${origin}/builder/build?build=${encodeURIComponent( encoded, )}`; setShareUrl(url); @@ -338,10 +338,10 @@ export default function GunbuilderPage() {

- Shadow Standard Co. + BATTL BUILDERS

- The Build Bench: Early Access + BattlBuilder Early Access

Explore components from trusted brands, choose one part per @@ -372,7 +372,7 @@ export default function GunbuilderPage() { {/* Primary actions now live under the total */}

) : hasParts ? ( { // If you want to pre-select something later, you can handle here. diff --git a/app/builder/build/page.tsx b/app/builder/summary/page.tsx similarity index 100% rename from app/builder/build/page.tsx rename to app/builder/summary/page.tsx diff --git a/components/BuilderNav.tsx b/components/BuilderNav.tsx index 5aecdcf..cbc41ef 100644 --- a/components/BuilderNav.tsx +++ b/components/BuilderNav.tsx @@ -24,7 +24,7 @@ export function BuilderNav({ activeCategoryId }: BuilderNavProps) { const currentCategory = activeCategoryId ?? searchParams.get("category") ?? undefined; - const baseHref = "/gunbuilder"; + const baseHref = "/builder"; const renderDropdown = (label: string, items: Category[]) => { if (!items.length) return null; diff --git a/components/CategoryColumn.tsx b/components/CategoryColumn.tsx index 02a11d2..f556472 100644 --- a/components/CategoryColumn.tsx +++ b/components/CategoryColumn.tsx @@ -37,7 +37,7 @@ export function CategoryColumn({

No part selected

{parts.length >= 1 && ( View All ({parts.length}) diff --git a/components/TopNav.tsx b/components/TopNav.tsx index da1dab4..ccf6011 100644 --- a/components/TopNav.tsx +++ b/components/TopNav.tsx @@ -42,7 +42,7 @@ export function TopNav() { {/* Center: main nav (Builder / Admin) */}