mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
formatting
This commit is contained in:
@@ -18,13 +18,13 @@ export const BecomeACreator: React.FC<BecomeACreatorProps> = ({
|
||||
}) => {
|
||||
return (
|
||||
<div className="flex w-full flex-col items-center justify-between space-y-8 py-8">
|
||||
<div className="font-neue mb-8 self-start text-[23px] font-bold leading-9 tracking-tight text-[#282828]">
|
||||
<div className="mb-8 self-start font-neue text-[23px] font-bold leading-9 tracking-tight text-[#282828]">
|
||||
{title}
|
||||
</div>
|
||||
<div className="font-neue max-w-full text-center text-5xl font-medium leading-9 tracking-wide text-[#272727]">
|
||||
<div className="max-w-full text-center font-neue text-5xl font-medium leading-9 tracking-wide text-[#272727]">
|
||||
{heading}
|
||||
</div>
|
||||
<div className="font-neue max-w-full text-center text-[26px] font-medium leading-9 tracking-tight text-[#878787]">
|
||||
<div className="max-w-full text-center font-neue text-[26px] font-medium leading-9 tracking-tight text-[#878787]">
|
||||
{description}
|
||||
</div>
|
||||
<Button onClick={onButtonClick} className="mt-8">
|
||||
|
||||
@@ -33,13 +33,13 @@ export const CreatorCard: React.FC<CreatorCardProps> = ({
|
||||
<AvatarImage src={avatarSrc} alt={creatorName} />
|
||||
<AvatarFallback>{creatorName.charAt(0)}</AvatarFallback>
|
||||
</Avatar>
|
||||
<div className="font-neue absolute left-0 top-[254px] text-xl font-bold tracking-tight text-[#272727]">
|
||||
<div className="absolute left-0 top-[254px] font-neue text-xl font-bold tracking-tight text-[#272727]">
|
||||
{creatorName}
|
||||
</div>
|
||||
<div className="font-neue absolute left-0 top-[284px] line-clamp-3 w-[210px] text-base font-normal leading-[21px] tracking-tight text-[#282828]">
|
||||
<div className="absolute left-0 top-[284px] line-clamp-3 w-[210px] font-neue text-base font-normal leading-[21px] tracking-tight text-[#282828]">
|
||||
{bio}
|
||||
</div>
|
||||
<div className="font-neue absolute left-0 top-[360px] text-base font-medium tracking-tight text-[#272727]">
|
||||
<div className="absolute left-0 top-[360px] font-neue text-base font-medium tracking-tight text-[#272727]">
|
||||
{agentsUploaded} agents uploaded
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -51,14 +51,14 @@ export const FeaturedStoreCard: React.FC<FeaturedStoreCardProps> = ({
|
||||
onMouseLeave={handleMouseLeave}
|
||||
>
|
||||
<div className="flex flex-col items-start justify-start gap-3.5 self-stretch">
|
||||
<div className="font-neue self-stretch text-[40px] font-medium leading-[43px] tracking-tight text-[#272727]">
|
||||
<div className="self-stretch font-neue text-[40px] font-medium leading-[43px] tracking-tight text-[#272727]">
|
||||
{agentName}
|
||||
</div>
|
||||
<div className="font-neue self-stretch text-xl font-normal tracking-tight text-[#878787]">
|
||||
<div className="self-stretch font-neue text-xl font-normal tracking-tight text-[#878787]">
|
||||
by {creatorName}
|
||||
</div>
|
||||
</div>
|
||||
<div className="font-neue w-[540px] flex-grow text-xl font-normal tracking-tight text-[#282828]">
|
||||
<div className="w-[540px] flex-grow font-neue text-xl font-normal tracking-tight text-[#282828]">
|
||||
{description}
|
||||
</div>
|
||||
<div className="flex flex-col items-start justify-end gap-5 self-stretch">
|
||||
|
||||
@@ -39,7 +39,7 @@ export const Navbar: React.FC<NavbarProps> = ({
|
||||
</div>
|
||||
<div className="flex items-center space-x-5">
|
||||
<div
|
||||
className="font-neue cursor-pointer text-2xl font-medium leading-9 tracking-tight text-[#474747]"
|
||||
className="cursor-pointer font-neue text-2xl font-medium leading-9 tracking-tight text-[#474747]"
|
||||
onClick={onProfileClick}
|
||||
>
|
||||
{userName}
|
||||
|
||||
Reference in New Issue
Block a user