Files
AutoGPT/autogpt_platform/frontend/src/app/page.tsx
Krzysztof Czerwinski 800625c952 fix(frontend): Change /store* url to /marketplace* (#9119)
We have branded it as "Marketplace", so the URL shouldn't be "store".

### Changes 🏗️

- Change frontend URLs from `/store*` to `/marketplace*`
- No API route changes to minimize bugs (follow up:
https://github.com/Significant-Gravitas/AutoGPT/issues/9118)
2025-01-18 17:49:41 +01:00

8 lines
123 B
TypeScript

"use client";
import { redirect } from "next/navigation";
export default function Page() {
redirect("/marketplace");
}