Skip to content

Commit

Permalink
fix(store): Marketplace - Navbar should say "Marketplace" rather than…
Browse files Browse the repository at this point in the history
… "Agent Store" (#9069)

Fixes #9067 

### Changes 🏗️

- Renamed elements from Agent Store to Marketplace
  • Loading branch information
Swiftyos authored Dec 19, 2024
1 parent aaf4ee5 commit ed7c937
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion autogpt_platform/frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default async function RootLayout({
<Navbar
links={[
{
name: "Agent Store",
name: "Marketplace",
href: "/store",
},
{
Expand Down
6 changes: 3 additions & 3 deletions autogpt_platform/frontend/src/app/store/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async function getStoreData() {

// FIX: Correct metadata
export const metadata: Metadata = {
title: "Agent Store - NextGen AutoGPT",
title: "Marketplace - NextGen AutoGPT",
description: "Find and use AI Agents created by our community",
applicationName: "NextGen AutoGPT Store",
authors: [{ name: "AutoGPT Team" }],
Expand All @@ -123,7 +123,7 @@ export const metadata: Metadata = {
follow: true,
},
openGraph: {
title: "Agent Store - NextGen AutoGPT",
title: "Marketplace - NextGen AutoGPT",
description: "Find and use AI Agents created by our community",
type: "website",
siteName: "NextGen AutoGPT Store",
Expand All @@ -138,7 +138,7 @@ export const metadata: Metadata = {
},
twitter: {
card: "summary_large_image",
title: "Agent Store - NextGen AutoGPT",
title: "Marketplace - NextGen AutoGPT",
description: "Find and use AI Agents created by our community",
images: ["/images/store-twitter.png"],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface FilterChipsProps {
onFilterChange?: (selectedFilters: string[]) => void;
multiSelect?: boolean;
}
/** 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 */
/** FilterChips is a component that allows the user to select filters from a list of badges. It is used on the Marketplace home page */
export const FilterChips: React.FC<FilterChipsProps> = ({
badges,
onFilterChange,
Expand Down
2 changes: 1 addition & 1 deletion autogpt_platform/frontend/src/components/agptui/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const Navbar = async ({ links, menuItemGroups }: NavbarProps) => {
groupName: "Navigation",
items: links.map((link) => ({
icon:
link.name === "Agent Store"
link.name === "Marketplace"
? IconType.Marketplace
: link.name === "Library"
? IconType.Library
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function NavBarButtons({ className }: { className?: string }) {
},
{
href: "/store",
text: "Agent Store",
text: "Marketplace",
icon: <IconMarketplace />,
},
];
Expand Down

0 comments on commit ed7c937

Please sign in to comment.