mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
Added seperator
This commit is contained in:
@@ -26,7 +26,7 @@ export const FeaturedSection: React.FC<FeaturedSectionProps> = ({
|
||||
Featured agents
|
||||
</h2>
|
||||
|
||||
<div className="flex flex-col items-center justify-center gap-6 sm:flex-row sm:flex-wrap">
|
||||
<div className="flex flex-col items-center justify-center gap-6 sm:flex-row sm:flex-wrap md:flex-nowrap">
|
||||
{featuredAgents.slice(0, 2).map((agent, index) => (
|
||||
<FeaturedStoreCard
|
||||
key={index}
|
||||
|
||||
@@ -5,6 +5,7 @@ import { FeaturedSection } from "./FeaturedSection";
|
||||
import { TopAgentsSection } from "./TopAgentsSection";
|
||||
import { BecomeACreator } from "../../BecomeACreator";
|
||||
import { FeaturedCreators } from "./FeaturedCreators";
|
||||
import { Separator } from "../../../ui/separator";
|
||||
|
||||
interface PageProps {
|
||||
userName: string;
|
||||
@@ -85,11 +86,14 @@ export const Page: React.FC<PageProps> = ({
|
||||
featuredAgents={featuredAgents}
|
||||
onCardClick={handleCardClick}
|
||||
/>
|
||||
<Separator />
|
||||
<TopAgentsSection topAgents={topAgents} onCardClick={handleCardClick} />
|
||||
<Separator />
|
||||
<FeaturedCreators
|
||||
featuredCreators={featuredCreators}
|
||||
onCardClick={handleCardClick}
|
||||
/>
|
||||
<Separator />
|
||||
<BecomeACreator
|
||||
title="Want to contribute?"
|
||||
heading="We're always looking for more Creators!"
|
||||
|
||||
Reference in New Issue
Block a user