Skip to content

Commit

Permalink
Merge branch 'dev' into bently/open-2249-marketplace-integrations-lin…
Browse files Browse the repository at this point in the history
…k-in-settings-is-a-404
  • Loading branch information
Bentlybro authored Dec 19, 2024
2 parents 223f0c4 + ed7c937 commit 6290059
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 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
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default async function Page({
storeListingVersionId={agent.store_listing_version_id}
/>
</div>
<AgentImages images={agent.agent_image} />
<AgentImages images={[agent.agent_video, ...agent.agent_image]} />
</div>
<Separator className="my-6" />
<AgentsSection
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 6290059

Please sign in to comment.