Skip to content

Commit ed7c937

Browse files
authored
fix(store): Marketplace - Navbar should say "Marketplace" rather than "Agent Store" (Significant-Gravitas#9069)
Fixes Significant-Gravitas#9067 ### Changes 🏗️ - Renamed elements from Agent Store to Marketplace
1 parent aaf4ee5 commit ed7c937

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

autogpt_platform/frontend/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default async function RootLayout({
3737
<Navbar
3838
links={[
3939
{
40-
name: "Agent Store",
40+
name: "Marketplace",
4141
href: "/store",
4242
},
4343
{

autogpt_platform/frontend/src/app/store/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ async function getStoreData() {
107107

108108
// FIX: Correct metadata
109109
export const metadata: Metadata = {
110-
title: "Agent Store - NextGen AutoGPT",
110+
title: "Marketplace - NextGen AutoGPT",
111111
description: "Find and use AI Agents created by our community",
112112
applicationName: "NextGen AutoGPT Store",
113113
authors: [{ name: "AutoGPT Team" }],
@@ -123,7 +123,7 @@ export const metadata: Metadata = {
123123
follow: true,
124124
},
125125
openGraph: {
126-
title: "Agent Store - NextGen AutoGPT",
126+
title: "Marketplace - NextGen AutoGPT",
127127
description: "Find and use AI Agents created by our community",
128128
type: "website",
129129
siteName: "NextGen AutoGPT Store",
@@ -138,7 +138,7 @@ export const metadata: Metadata = {
138138
},
139139
twitter: {
140140
card: "summary_large_image",
141-
title: "Agent Store - NextGen AutoGPT",
141+
title: "Marketplace - NextGen AutoGPT",
142142
description: "Find and use AI Agents created by our community",
143143
images: ["/images/store-twitter.png"],
144144
},

autogpt_platform/frontend/src/components/agptui/FilterChips.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface FilterChipsProps {
88
onFilterChange?: (selectedFilters: string[]) => void;
99
multiSelect?: boolean;
1010
}
11-
/** FilterChips is a component that allows the user to select filters from a list of badges. It is used on the Agent Store home page */
11+
/** FilterChips is a component that allows the user to select filters from a list of badges. It is used on the Marketplace home page */
1212
export const FilterChips: React.FC<FilterChipsProps> = ({
1313
badges,
1414
onFilterChange,

autogpt_platform/frontend/src/components/agptui/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const Navbar = async ({ links, menuItemGroups }: NavbarProps) => {
109109
groupName: "Navigation",
110110
items: links.map((link) => ({
111111
icon:
112-
link.name === "Agent Store"
112+
link.name === "Marketplace"
113113
? IconType.Marketplace
114114
: link.name === "Library"
115115
? IconType.Library

autogpt_platform/frontend/src/components/nav/NavBarButtons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function NavBarButtons({ className }: { className?: string }) {
2525
},
2626
{
2727
href: "/store",
28-
text: "Agent Store",
28+
text: "Marketplace",
2929
icon: <IconMarketplace />,
3030
},
3131
];

0 commit comments

Comments
 (0)