fix(store): Marketplace - Navbar should say "Marketplace" rather than "Agent Store" (#9069)

Fixes #9067 

### Changes 🏗️

- Renamed elements from Agent Store to Marketplace
This commit is contained in:
Swifty 2024-12-19 11:20:02 +01:00 committed by GitHub
parent aaf4ee524d
commit ed7c9378eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 7 deletions

View File

@ -37,7 +37,7 @@ export default async function RootLayout({
<Navbar
links={[
{
name: "Agent Store",
name: "Marketplace",
href: "/store",
},
{

View File

@ -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" }],
@ -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",
@ -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"],
},

View File

@ -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,

View File

@ -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

View File

@ -25,7 +25,7 @@ export function NavBarButtons({ className }: { className?: string }) {
},
{
href: "/store",
text: "Agent Store",
text: "Marketplace",
icon: <IconMarketplace />,
},
];